diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-09 12:34:44 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-09 12:34:44 +0000 |
commit | 85f9df9f6ed4ef4a276fbcc604e01850a7e79406 (patch) | |
tree | b490356829964ba92d48547ada5905da3f879ad9 /ace/IOStream_T.cpp | |
parent | 4100c84ab29b9bea623937c9be8eed2ea1937b71 (diff) | |
download | ATCD-85f9df9f6ed4ef4a276fbcc604e01850a7e79406.tar.gz |
__GNUG__ instead of __GNUC__
Diffstat (limited to 'ace/IOStream_T.cpp')
-rw-r--r-- | ace/IOStream_T.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ace/IOStream_T.cpp b/ace/IOStream_T.cpp index 014ec59498c..7ab8c71b5fb 100644 --- a/ace/IOStream_T.cpp +++ b/ace/IOStream_T.cpp @@ -4,7 +4,7 @@ #if !defined (ACE_IOSTREAM_T_C) #define ACE_IOSTREAM_T_C -#if defined (ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION) && defined (__GNUC__) +#if defined (ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION) && defined (__GNUG__) # if ! defined (ACE_IOSTREAM_T_H) // _Only_ define this when compiling this .cpp file standalone, not // when instantiating templates. Its purpose is to provide something @@ -12,9 +12,11 @@ // they would be tied to the file(name). With Cygnus g++ 2.7.2/VxWorks, // that name is used directly in variable names in the munched ctor/dtor // file. That name contains a ".", so it's not a legal C variable name. + // The root of all this trouble is a static instance (of Iostream_init) + // declared in the iostream.h header file. int ACE_IOStream_T_global_of_builtin_type_to_avoid_munch_problems = 0; # endif /* ! ACE_IOSTREAM_T_H */ -#endif /* ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION && defined (__GNUC__) */ +#endif /* ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION && defined (__GNUG__) */ #define ACE_BUILD_DLL #include "ace/IOStream_T.h" |