mirror of
https://github.com/boostorg/build.git
synced 2026-02-13 00:12:11 +00:00
Fix use of C++ declaration semantics/syntax, in C file. Well Aleksey fixed it already.. So just cleanup the indentation, etc.
[SVN r29257]
This commit is contained in:
@@ -414,16 +414,17 @@ void execnt_unit_test()
|
||||
free( long_command );
|
||||
}
|
||||
|
||||
{
|
||||
char** argv = string_to_args("\"g++\" -c -I\"Foobar\"");
|
||||
{
|
||||
/* Work around vc6 bug; it doesn't like escaped string
|
||||
* literals inside assert
|
||||
*/
|
||||
char** argv = string_to_args("\"g++\" -c -I\"Foobar\"");
|
||||
char const expected[] = "-c -I\"Foobar\"";
|
||||
assert(!strcmp(argv[0], "g++"));
|
||||
assert(!strcmp(argv[1], expected));
|
||||
free_argv(argv);
|
||||
}
|
||||
|
||||
assert(!strcmp(argv[0], "g++"));
|
||||
assert(!strcmp(argv[1], expected));
|
||||
free_argv(argv);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user