File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ main(int argc, char* argv[])
42
42
auto util = TestUtilities::get_instance ();
43
43
44
44
if (!util->check_command_args (argc, argv))
45
- return util-> get_result_and_delete_instance () ? EXIT_SUCCESS : EXIT_FAILURE;
45
+ return TestUtilities:: get_result_and_delete_instance () ? EXIT_SUCCESS : EXIT_FAILURE;
46
46
47
47
result_stream << sigc::hide<0 >(foo ())(1 , 2 );
48
48
util->check_result (result_stream, " foo(int 2) 3" );
@@ -59,5 +59,5 @@ main(int argc, char* argv[])
59
59
sigc::hide (foo_void ())(1 ); // void test
60
60
util->check_result (result_stream, " foo_void()" );
61
61
62
- return util-> get_result_and_delete_instance () ? EXIT_SUCCESS : EXIT_FAILURE;
62
+ return TestUtilities:: get_result_and_delete_instance () ? EXIT_SUCCESS : EXIT_FAILURE;
63
63
}
You can’t perform that action at this time.
0 commit comments