Kaydet (Commit) c3488487 authored tarafından Julien Nabet's avatar Julien Nabet

Fix ret value never used

Change-Id: Ia1c1bf8d1eba3195f5eae2148d4c8c1ce2489140
üst d5d20270
...@@ -46,8 +46,6 @@ check_value( const String & a, const char * b ) ...@@ -46,8 +46,6 @@ check_value( const String & a, const char * b )
bool bool
classtest_String( csv::SimpleString & rSimpleString ) classtest_String( csv::SimpleString & rSimpleString )
{ {
bool ret = true;
String x1; String x1;
UT_CHECK( String(), check_value(x1,"") ) UT_CHECK( String(), check_value(x1,"") )
...@@ -61,9 +59,9 @@ classtest_String( csv::SimpleString & rSimpleString ) ...@@ -61,9 +59,9 @@ classtest_String( csv::SimpleString & rSimpleString )
bool ret = ftest_Read( rSimpleString ); bool ret = ftest_Read( rSimpleString );
ret = ftest_Write( rSimpleString ) AND ret; ret &= ftest_Write( rSimpleString ) AND ret;
ret = ftest_SeekBack( rSimpleString ) AND ret; ret &= ftest_SeekBack( rSimpleString ) AND ret;
ret = ftest_SeekRelative( rSimpleString ) AND ret; ret &= ftest_SeekRelative( rSimpleString ) AND ret;
rSimpleString.Close(); rSimpleString.Close();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment