1
0
forked from boostorg/mpl

Compare commits

...

3 Commits

Author SHA1 Message Date
nobody fabd0f6690 This commit was manufactured by cvs2svn to create tag
'Version_1_33_1'.

[SVN r31916]
2005-12-05 14:04:06 +00:00
Douglas Gregor 87a2c171cd Continue the strange workaround into GCC 4.0
[SVN r30992]
2005-09-15 02:26:13 +00:00
nobody 18d3165e00 This commit was manufactured by cvs2svn to create branch 'RC_1_33_0'.
[SVN r30300]
2005-07-28 18:22:24 +00:00
2 changed files with 2 additions and 3 deletions
-1
View File
@@ -1 +0,0 @@
ECHO is on.
+2 -2
View File
@@ -11,8 +11,8 @@
// $Date$
// $Revision$
// Necessary to overcome a strange name lookup bug in GCC 3.3 for Mac OS X
#if defined(__APPLE_CC__) && defined(__GNUC__) && (__GNUC__ == 3) && (__GNUC_MINOR__ <= 3)
// Necessary to overcome a strange name lookup bug in GCC 3.3 and 4.0 for Mac OS X
#if defined(__APPLE_CC__) && defined(__GNUC__) && (__GNUC__ <= 4)
# include <cassert>
#endif