summaryrefslogtreecommitdiff
path: root/examples/APG
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2005-03-11 11:57:49 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2005-03-11 11:57:49 +0000
commit60e9c779cc293febb4904a650bbf4caf5327d334 (patch)
tree513b79a2c4d89f0431083f394b5635e84d37bb07 /examples/APG
parent5e5afe95f1ae21774aa09d19e0543f9b0cdaf326 (diff)
downloadATCD-60e9c779cc293febb4904a650bbf4caf5327d334.tar.gz
ChangeLogTag: Fri Mar 11 11:52:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'examples/APG')
-rw-r--r--examples/APG/Logging/LogManager.h2
-rw-r--r--examples/APG/Logging/Use_Multiple_Sinks.cpp2
-rw-r--r--examples/APG/Logging/Use_Ostream.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/APG/Logging/LogManager.h b/examples/APG/Logging/LogManager.h
index cc6baea6694..1ab99d2cd14 100644
--- a/examples/APG/Logging/LogManager.h
+++ b/examples/APG/Logging/LogManager.h
@@ -5,7 +5,7 @@
#include "ace/Singleton.h"
#include "ace/Log_Msg.h"
#include "ace/Log_Msg_Callback.h"
-#if (defined (_MSC_VER) && (_MSC_VER >= 1200) && (_MSC_VER < 1300))
+#if (defined (_MSC_VER) && (_MSC_VER < 1300))
#include <fstream>
#endif
diff --git a/examples/APG/Logging/Use_Multiple_Sinks.cpp b/examples/APG/Logging/Use_Multiple_Sinks.cpp
index 7decd59217a..9adef16bf7a 100644
--- a/examples/APG/Logging/Use_Multiple_Sinks.cpp
+++ b/examples/APG/Logging/Use_Multiple_Sinks.cpp
@@ -2,7 +2,7 @@
#include "ace/Log_Msg.h"
#include "ace/streams.h"
-#if (defined (_MSC_VER) && (_MSC_VER >= 1200) && (_MSC_VER < 1300))
+#if (defined (_MSC_VER) && (_MSC_VER < 1300))
#include <fstream>
#endif
int ACE_TMAIN (int, ACE_TCHAR *argv[])
diff --git a/examples/APG/Logging/Use_Ostream.cpp b/examples/APG/Logging/Use_Ostream.cpp
index 54ab19170db..996746183c1 100644
--- a/examples/APG/Logging/Use_Ostream.cpp
+++ b/examples/APG/Logging/Use_Ostream.cpp
@@ -2,7 +2,7 @@
#include "ace/Log_Msg.h"
#include "ace/streams.h"
-#if (defined (_MSC_VER) && (_MSC_VER >= 1200) && (_MSC_VER < 1300))
+#if (defined (_MSC_VER) && (_MSC_VER < 1300))
#include <fstream>
#endif
void foo (void);