forked from luabind/luabind
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The implementation of BOOST_PP_ITERATION_FLAGS() changed in Boost 1.49.0, which causes Luabind to fail to build with GCC (reproduced with GCC 4.4 and GCC 4.6). https://svn.boost.org/trac/boost/ticket/6631 http://thread.gmane.org/gmane.comp.lib.boost.devel/228802 http://article.gmane.org/gmane.comp.lib.boost.devel/228836 The work-around is to replace the pattern #if !defined(MACRO) // A #elif MACRO() // B #endif with #if !defined(MACRO) // A #else #if MACRO() // B #endif #endif
- Loading branch information
Peter Colberg
committed
Mar 15, 2012
1 parent
f5fe839
commit 085f2e0
Showing
3 changed files
with
9 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters