summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-10-21 20:39:56 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-10-21 20:39:56 +0000
commit0d727cec3996b48f3c4d5f33401eb52002a4551a (patch)
tree4b26b02d47124a8c3b9ada7bb369af3afab15f16 /examples
parent16c9c0778791c47d5cb61371152a372f4064e5ac (diff)
downloadATCD-0d727cec3996b48f3c4d5f33401eb52002a4551a.tar.gz
added #include of iostream.h with ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION
Diffstat (limited to 'examples')
-rw-r--r--examples/Shared_Malloc/test_persistence.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/Shared_Malloc/test_persistence.cpp b/examples/Shared_Malloc/test_persistence.cpp
index 60a80954d55..7bdcbb39ceb 100644
--- a/examples/Shared_Malloc/test_persistence.cpp
+++ b/examples/Shared_Malloc/test_persistence.cpp
@@ -4,6 +4,10 @@
#include "ace/Malloc.h"
+#if defined (ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION)
+# include /**/ <iostream.h>
+#endif /* ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION */
+
typedef ACE_Malloc <ACE_MMAP_MEMORY_POOL, ACE_Null_Mutex> MALLOC;
typedef ACE_Malloc_Iterator <ACE_MMAP_MEMORY_POOL, ACE_Null_Mutex> MALLOC_ITERATOR;
@@ -236,4 +240,3 @@ template class ACE_Malloc_Iterator <ACE_MMAP_MEMORY_POOL, ACE_Null_Mutex>;
#pragma instantiate ACE_Malloc <ACE_MMAP_MEMORY_POOL, ACE_Null_Mutex>
#pragma instantiate ACE_Malloc_Iterator <ACE_MMAP_MEMORY_POOL, ACE_Null_Mutex>
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
-