Work around name lookup bug in GCC 3.3 for Mac OS X

[SVN r28899]
This commit is contained in:
Douglas Gregor
2005-05-14 16:26:11 +00:00
parent 4228d1489c
commit 94145ff494

View File

@@ -11,6 +11,11 @@
// $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)
# include <cassert>
#endif
#include <boost/mpl/size_t.hpp>
#include <boost/mpl/identity.hpp>
#include <boost/preprocessor/repetition/repeat_from_to.hpp>