2
0
mirror of https://github.com/boostorg/spirit.git synced 2026-01-19 04:42:11 +00:00

-- added return statements at the end of main

[SVN r17137]
This commit is contained in:
Martin Wille
2003-01-31 22:26:30 +00:00
parent a8859d71b8
commit fd098d9173
3 changed files with 4 additions and 0 deletions

View File

@@ -44,5 +44,6 @@ int main(int, char**)
assert(*b++ == 4);
assert(*b++ == 5);
assert(b == q.end());
return 0;
}

View File

@@ -74,4 +74,5 @@ main()
assert(c1o1->get_object_id()==1);
std::cout << "Test concluded successfully\n";
return 0;
}

View File

@@ -194,6 +194,8 @@ main()
// check wether as_parser<> works:
while_p('"')['"'];
do_p['"'].while_p('"');
return error_count!=0;
}
////////////////////////////////////////////////////////////////////////////////
// End of File