Ticket #7738: fix_comment_typo.patch
File fix_comment_typo.patch, 1.7 KB (added by , 10 years ago) |
---|
-
boost/fusion/container/deque/deque.hpp
11 11 #include <boost/config.hpp> 12 12 13 13 /////////////////////////////////////////////////////////////////////////////// 14 // With variadics, we will use the PP version version14 // With variadics, we will use the PP version 15 15 /////////////////////////////////////////////////////////////////////////////// 16 16 #if defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) 17 17 # include <boost/fusion/container/deque/detail/pp_deque.hpp> -
boost/fusion/adapted/struct/detail/define_struct_inline.hpp
36 36 // an alternate implementation for these metafunctions is used that does not 37 37 // require such specializations. The alternate implementation takes longer 38 38 // to compile so its use is restricted to the offending compilers. 39 // For MSVC, the bug was wasreported at https://connect.microsoft.com/VisualStudio/feedback/details/757891/c-compiler-error-involving-partial-specializations-of-nested-templates39 // For MSVC, the bug was reported at https://connect.microsoft.com/VisualStudio/feedback/details/757891/c-compiler-error-involving-partial-specializations-of-nested-templates 40 40 // For GCC, 4.4 and earlier are no longer maintained so there is no need 41 41 // to report a bug. 42 42 #if defined(BOOST_MSVC) || (defined(__GNUC__) && (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ <= 4)))