diff options
author | harrison <harrison@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-02-27 06:57:03 +0000 |
---|---|---|
committer | harrison <harrison@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-02-27 06:57:03 +0000 |
commit | cf20565b46227be607529de195a719d0f04f4110 (patch) | |
tree | 4dd1fbbfd91e41d49b633b808a4ee55bd280e912 /STL | |
parent | b8027924bda99818712ef8e8402c5d5333ea702f (diff) | |
download | ATCD-cf20565b46227be607529de195a719d0f04f4110.tar.gz |
Did the _MSC_VER > 1010 thing. Thanks to Matthias Kerkhoff.
Diffstat (limited to 'STL')
-rw-r--r-- | STL/bool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/STL/bool.h b/STL/bool.h index 76b9dbd69c3..d57030e01ec 100644 --- a/STL/bool.h +++ b/STL/bool.h @@ -4,7 +4,7 @@ #define ACE_BOOL_H // Define bool out of the std namespace. -#if defined (WIN32) +#if (_MSC_VER > 1010) #include <yvals.h> #else #if !defined (bool) |