summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2005-04-11 08:58:47 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2005-04-11 08:58:47 +0000
commit9b2949d3b1a7f822f4ccc49189f52b4bd115c899 (patch)
tree6442c3b7145b0d51239c5429b1affa0f111c743e
parent3ec3078d71358b860abab4d446b2bee359f9754e (diff)
downloadATCD-9b2949d3b1a7f822f4ccc49189f52b4bd115c899.tar.gz
ChangeLogTag: Mon Apr 11 09:46:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--TAO/TAO_IDL/be/be_valuetype.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/TAO_IDL/be/be_valuetype.cpp b/TAO/TAO_IDL/be/be_valuetype.cpp
index 07ecc3c5502..0e1684d4a52 100644
--- a/TAO/TAO_IDL/be/be_valuetype.cpp
+++ b/TAO/TAO_IDL/be/be_valuetype.cpp
@@ -433,9 +433,9 @@ be_valuetype::gen_helper_header (char*,
*os << "namespace CORBA" << be_nl
<< "{"
<< be_idt_nl
- << "TAO_NAMESPACE_STORAGE_CLASS void add_ref ("
+ << "extern " << be_global->stub_export_macro () << " void add_ref ("
<< this->full_name () << " *);" << be_nl
- << "TAO_NAMESPACE_STORAGE_CLASS void remove_ref ("
+ << "extern " << be_global->stub_export_macro () << " void remove_ref ("
<< this->full_name () << " *);";
*os << be_uidt_nl
@@ -463,9 +463,9 @@ be_valuetype::gen_helper_inline (char*,
<< "namespace CORBA" << be_nl
<< "{"
<< be_idt_nl
- << "TAO_NAMESPACE_STORAGE_CLASS void add_ref ("
+ << "extern " << be_global->stub_export_macro () << " void add_ref ("
<< this->full_name () << " *);" << be_nl
- << "TAO_NAMESPACE_STORAGE_CLASS void remove_ref ("
+ << "extern " << be_global->stub_export_macro () << " void remove_ref ("
<< this->full_name () << " *);"
<< be_uidt_nl
<< "}" << be_nl << be_nl