id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 6740,small fix for boost/config/compiler/clang.hpp,sven-boost@…,John Maddock,"Here's a small patch for boost/config/compiler/clang.hpp that fixes a redefinition error when compiling with clang and -DBOOST_NO_EXCEPTIONS {{{#!diff --- boost/config/compiler/clang.hpp~ 2012-03-28 22:01:00.000000000 +0200 +++ boost/config/compiler/clang.hpp 2012-03-28 22:17:15.000000000 +0200 @@ -8,8 +8,7 @@ // Clang compiler setup. -#if __has_feature(cxx_exceptions) && !defined(BOOST_NO_EXCEPTIONS) -#else +#if !__has_feature(cxx_exceptions) && !defined(BOOST_NO_EXCEPTIONS) # define BOOST_NO_EXCEPTIONS #endif }}}",Patches,closed,To Be Determined,config,Boost 1.49.0,Problem,fixed,exceptions config clang,sven-boost@…