Merge bug fix in test to release

[SVN r84449]
This commit is contained in:
Marshall Clow 2013-05-23 18:38:20 +00:00
parent 4080fe22e3
commit 0d605befd4

View File

@ -23,7 +23,7 @@ void ends_with ( const char *arg ) {
string_ref sr2 ( arg ); string_ref sr2 ( arg );
const char *p = arg; const char *p = arg;
while ( !*p ) { while ( *p ) {
BOOST_CHECK ( sr.ends_with ( p )); BOOST_CHECK ( sr.ends_with ( p ));
++p; ++p;
} }