Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r84449 - branches/release/libs/utility/test
From: marshall_at_[hidden]
Date: 2013-05-23 14:38:21


Author: marshall
Date: 2013-05-23 14:38:20 EDT (Thu, 23 May 2013)
New Revision: 84449
URL: http://svn.boost.org/trac/boost/changeset/84449

Log:
Merge bug fix in test to release
Properties modified:
   branches/release/libs/utility/test/string_ref_test2.cpp (contents, props changed)
Text files modified:
   branches/release/libs/utility/test/string_ref_test2.cpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: branches/release/libs/utility/test/string_ref_test2.cpp
==============================================================================
--- branches/release/libs/utility/test/string_ref_test2.cpp (original)
+++ branches/release/libs/utility/test/string_ref_test2.cpp 2013-05-23 14:38:20 EDT (Thu, 23 May 2013)
@@ -23,7 +23,7 @@
     string_ref sr2 ( arg );
     const char *p = arg;
 
- while ( !*p ) {
+ while ( *p ) {
         BOOST_CHECK ( sr.ends_with ( p ));
         ++p;
         }


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk