Ticket #7916: fix_comment_typo.patch

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

Patch for Boost.Range

  • boost/range/iterator_range_io.hpp

     
    4848
    4949        //! iterator_range output operator
    5050        /*!
    51             Output the range to an ostream. Elements are outputed
     51            Output the range to an ostream. Elements are outputted
    5252            in a sequence without separators.
    5353        */
    5454        template< typename IteratorT, typename Elem, typename Traits >
     
    6767
    6868        //! iterator_range output operator
    6969        /*!
    70             Output the range to an ostream. Elements are outputed
     70            Output the range to an ostream. Elements are outputted
    7171            in a sequence without separators.
    7272        */
    7373        template< typename IteratorT >
  • boost/range/empty.hpp

     
    2828        return boost::begin( r ) == boost::end( r );
    2929    }
    3030
    31 } // namepace 'boost'
     31} // namespace 'boost'
    3232
    3333
    3434#endif
  • boost/range/irange.hpp

     
    100100        // While this design is less performant than some less
    101101        // safe alternatives, the use of ranges and iterators to
    102102        // perform counting will never be optimal anyhow, hence
    103         // if optimal performance is desired a handcoded loop
     103        // if optimal performance is desired a hand-coded loop
    104104        // is the solution.
    105105        template<typename Integer>
    106106        class integer_iterator_with_step
  • boost/range/detail/any_iterator.hpp

     
    558558                }
    559559
    560560                // If this is a non-null iterator then we need to put
    561                 // a clone of this iterators impementation into the other
     561                // a clone of this iterators implementation into the other
    562562                // iterator.
    563563                // We can't just swap because of the small buffer optimization.
    564564                if (m_impl)
  • boost/range/detail/collection_traits_detail.hpp

     
    208208
    209209            // array traits ( no partial specialization )
    210210            /*
    211                 without parial specialization we are able to
     211                without partial specialization we are able to
    212212                provide support only for a limited number of
    213213                types. Currently the primitive numeric types
    214214                are supported
     
    324324
    325325#endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
    326326           
    327             // array lenght resolving
     327            // array length resolving
    328328            /*
    329329                Lenght of string contained in a static array could
    330330                be different from the size of the array.
    331                 For string processing we need the lenght without
     331                For string processing we need the length without
    332332                terminating 0.
    333333
    334                 Therefore, the lenght is calulated for char and wchar_t
     334                Therefore, the length is calculated for char and wchar_t
    335335                using char_traits, rather then simply returning
    336336                the array size.
    337337            */
  • libs/range/test/algorithm_example.cpp

     
    1111#include <boost/detail/workaround.hpp>
    1212
    1313#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
    14 #  pragma warn -8091 // supress warning in Boost.Test
     14#  pragma warn -8091 // suppress warning in Boost.Test
    1515#  pragma warn -8057 // unused argument argc/argv in Boost.Test
    1616#endif
    1717
     
    2727namespace
    2828{
    2929    //
    30     // example: extrating bounds in a generic algorithm
     30    // example: extracting bounds in a generic algorithm
    3131    //
    3232    template< typename Range, typename T >
    3333    inline typename boost::range_iterator<Range>::type
  • libs/range/test/iterator_pair.cpp

     
    1111#include <boost/detail/workaround.hpp>
    1212
    1313#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
    14 #  pragma warn -8091 // supress warning in Boost.Test
     14#  pragma warn -8091 // suppress warning in Boost.Test
    1515#  pragma warn -8057 // unused argument argc/argv in Boost.Test
    1616#endif
    1717
  • libs/range/test/extension_size.cpp

     
    1212#include <boost/detail/workaround.hpp>
    1313
    1414#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
    15 #  pragma warn -8091 // supress warning in Boost.Test
     15#  pragma warn -8091 // suppress warning in Boost.Test
    1616#  pragma warn -8057 // unused argument argc/argv in Boost.Test
    1717#endif
    1818
  • libs/range/test/partial_workaround.cpp

     
    1414#include <boost/test/test_tools.hpp>
    1515
    1616#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
    17 #  pragma warn -8091 // supress warning in Boost.Test
     17#  pragma warn -8091 // suppress warning in Boost.Test
    1818#  pragma warn -8057 // unused argument argc/argv in Boost.Test
    1919#endif
    2020
  • libs/range/test/adl_conformance.cpp

     
    1111#include <boost/detail/workaround.hpp>
    1212
    1313#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
    14 #  pragma warn -8091 // supress warning in Boost.Test
     14#  pragma warn -8091 // suppress warning in Boost.Test
    1515#  pragma warn -8057 // unused argument argc/argv in Boost.Test
    1616#endif
    1717
  • libs/range/test/reversible_range.cpp

     
    1212#include <boost/detail/workaround.hpp>
    1313
    1414#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
    15 #  pragma warn -8091 // supress warning in Boost.Test
     15#  pragma warn -8091 // suppress warning in Boost.Test
    1616#  pragma warn -8057 // unused argument argc/argv in Boost.Test
    1717#endif
    1818
  • libs/range/test/std_container.cpp

     
    1212#include <boost/detail/workaround.hpp>
    1313
    1414#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
    15 #  pragma warn -8091 // supress warning in Boost.Test
     15#  pragma warn -8091 // suppress warning in Boost.Test
    1616#  pragma warn -8057 // unused argument argc/argv in Boost.Test
    1717#endif
    1818
  • libs/range/test/extension_mechanism.cpp

     
    1212#include <boost/detail/workaround.hpp>
    1313
    1414#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
    15 #  pragma warn -8091 // supress warning in Boost.Test
     15#  pragma warn -8091 // suppress warning in Boost.Test
    1616#  pragma warn -8057 // unused argument argc/argv in Boost.Test
    1717#endif
    1818
  • libs/range/test/iterator_range.cpp

     
    1313#include <boost/detail/workaround.hpp>
    1414
    1515#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
    16 #  pragma warn -8091 // supress warning in Boost.Test
     16#  pragma warn -8091 // suppress warning in Boost.Test
    1717#  pragma warn -8057 // unused argument argc/argv in Boost.Test
    1818#endif
    1919
     
    235235
    236236//
    237237//
    238 // Check that constness is propgated correct from
     238// Check that constness is propagated correct from
    239239// the iterator types.
    240240//
    241241// Test contributed by Larry Evans.
  • libs/range/test/sub_range.cpp

     
    1212#include <boost/detail/workaround.hpp>
    1313
    1414#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
    15 #  pragma warn -8091 // supress warning in Boost.Test
     15#  pragma warn -8091 // suppress warning in Boost.Test
    1616#  pragma warn -8057 // unused argument argc/argv in Boost.Test
    1717#endif
    1818
  • libs/range/test/end.cpp

     
    1111#include <boost/detail/workaround.hpp>
    1212
    1313#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
    14 #  pragma warn -8091 // supress warning in Boost.Test
     14#  pragma warn -8091 // suppress warning in Boost.Test
    1515#  pragma warn -8057 // unused argument argc/argv in Boost.Test
    1616#endif
    1717
  • libs/range/test/string.cpp

     
    1313#include <boost/detail/workaround.hpp>
    1414
    1515#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
    16 #  pragma warn -8091 // supress warning in Boost.Test
     16#  pragma warn -8091 // suppress warning in Boost.Test
    1717#  pragma warn -8057 // unused argument argc/argv in Boost.Test
    1818#endif
    1919
  • libs/range/test/adaptor_test/strided.cpp

     
    99// For more information, see http://www.boost.org/libs/range/
    1010//
    1111// The strided_defect_Trac5014 test case is a modified version of a test case
    12 // contribued by Michel Morin as part of the trac ticket.
     12// contributed by Michel Morin as part of the trac ticket.
    1313//
    1414#include <boost/range/adaptor/strided.hpp>
    1515
  • libs/range/test/array.cpp

     
    1212#include <boost/detail/workaround.hpp>
    1313
    1414#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
    15 #  pragma warn -8091 // supress warning in Boost.Test
     15#  pragma warn -8091 // suppress warning in Boost.Test
    1616#  pragma warn -8057 // unused argument argc/argv in Boost.Test
    1717#endif
    1818
  • libs/range/test/algorithm_ext_test/push_front.cpp

     
    4343        BOOST_CHECK_EQUAL_COLLECTIONS( reference.begin(), reference.end(),
    4444            test.begin(), test.end() );
    4545
    46         // copy the orignal reference sequence
     46        // copy the original reference sequence
    4747        Container reference_copy(reference);
    4848        std::transform(reference.begin(), reference.end(), reference.begin(), DoubleValue());
    4949
  • libs/range/test/begin.cpp

     
    1111#include <boost/detail/workaround.hpp>
    1212
    1313#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
    14 #  pragma warn -8091 // supress warning in Boost.Test
     14#  pragma warn -8091 // suppress warning in Boost.Test
    1515#  pragma warn -8057 // unused argument argc/argv in Boost.Test
    1616#endif
    1717
  • libs/range/test/const_ranges.cpp

     
    1212#include <boost/detail/workaround.hpp>
    1313
    1414#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
    15 #  pragma warn -8091 // supress warning in Boost.Test
     15#  pragma warn -8091 // suppress warning in Boost.Test
    1616#  pragma warn -8057 // unused argument argc/argv in Boost.Test
    1717#endif
    1818