summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2005-04-10 10:01:13 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2005-04-10 10:01:13 +0000
commit4e86e64a835e32838bb1fc2155a0917fb3e367e1 (patch)
tree4d2687e71573d9a7119b2af934fa62c0760d774c
parent83674bb7639068083ec9e3a71494b71f68565209 (diff)
downloadATCD-4e86e64a835e32838bb1fc2155a0917fb3e367e1.tar.gz
ChangeLogTag:Sun Apr 10 02:26:36 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
-rw-r--r--TAO/ChangeLog8
-rw-r--r--TAO/TAO_IDL/fe/fe_global.cpp6
2 files changed, 11 insertions, 3 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 691f98232ad..1a66608a4eb 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,11 @@
+Sun Apr 10 02:26:36 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
+
+ * TAO_IDL/fe/fe_global.cpp:
+
+ Removed export macros from forward declarations. They aren't
+ necessary, and cause the forthcoming g++ 4.0 to issue an error
+ when enabling visibility attribute support.
+
Sat Apr 9 21:19:51 2005 Phil Mesnier <mesnier_p@ociweb.com>
* examples/ior_corbaloc/run_test.pl:
diff --git a/TAO/TAO_IDL/fe/fe_global.cpp b/TAO/TAO_IDL/fe/fe_global.cpp
index 7f1e0f66ddd..d5ac3a84101 100644
--- a/TAO/TAO_IDL/fe/fe_global.cpp
+++ b/TAO/TAO_IDL/fe/fe_global.cpp
@@ -1,12 +1,12 @@
// $Id$
-#include "TAO_IDL_FE_Export.h"
+#include "global_extern.h"
+
ACE_RCSID (fe,
fe_global,
"$Id$")
-class TAO_IDL_FE_Export IDL_GlobalData;
-TAO_IDL_FE_Export IDL_GlobalData *idl_global = 0;
+IDL_GlobalData *idl_global = 0;