Ticket #7738: fix_comment_typo.patch

File fix_comment_typo.patch, 1.7 KB (added by oss.2012.team+E2@…, 10 years ago)

Patch for boost/fusion/container/deque/deque.hpp

  • boost/fusion/container/deque/deque.hpp

     
    1111#include <boost/config.hpp>
    1212
    1313///////////////////////////////////////////////////////////////////////////////
    14 // With variadics, we will use the PP version version
     14// With variadics, we will use the PP version
    1515///////////////////////////////////////////////////////////////////////////////
    1616#if defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
    1717# include <boost/fusion/container/deque/detail/pp_deque.hpp>
  • boost/fusion/adapted/struct/detail/define_struct_inline.hpp

     
    3636// an alternate implementation for these metafunctions is used that does not
    3737// require such specializations. The alternate implementation takes longer
    3838// to compile so its use is restricted to the offending compilers.
    39 // For MSVC, the bug was was reported at https://connect.microsoft.com/VisualStudio/feedback/details/757891/c-compiler-error-involving-partial-specializations-of-nested-templates
     39// For MSVC, the bug was reported at https://connect.microsoft.com/VisualStudio/feedback/details/757891/c-compiler-error-involving-partial-specializations-of-nested-templates
    4040// For GCC, 4.4 and earlier are no longer maintained so there is no need
    4141// to report a bug.
    4242#if defined(BOOST_MSVC) || (defined(__GNUC__) && (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ <= 4)))