diff options
Diffstat (limited to 'ace')
-rw-r--r-- | ace/IOStream.h | 6 | ||||
-rw-r--r-- | ace/Log_Record.cpp | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/ace/IOStream.h b/ace/IOStream.h index e987367b8f4..a003946eac8 100644 --- a/ace/IOStream.h +++ b/ace/IOStream.h @@ -24,7 +24,11 @@ #include "ace/INET_Addr.h" #include "ace/Handle_Set.h" -#include "ace/stdcpp.h" +#if defined (ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION) +# include /**/ <iostream.h> +#else +# include "ace/stdcpp.h" +#endif /* ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION */ #if defined (ACE_HAS_STRING_CLASS) #if defined (ACE_WIN32) diff --git a/ace/Log_Record.cpp b/ace/Log_Record.cpp index 92520a70871..bab66d2c50f 100644 --- a/ace/Log_Record.cpp +++ b/ace/Log_Record.cpp @@ -4,7 +4,11 @@ #define ACE_BUILD_DLL #include "ace/Log_Record.h" -#include "ace/stdcpp.h" +#if defined ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION +# include /**/ <iostream.h> +#else +# include "ace/stdcpp.h" +#endif /* ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION */ ACE_ALLOC_HOOK_DEFINE(ACE_Log_Record) |