diff options
Diffstat (limited to 'tests/test_ptr_fun.cc')
-rw-r--r-- | tests/test_ptr_fun.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_ptr_fun.cc b/tests/test_ptr_fun.cc index b105389..6c29437 100644 --- a/tests/test_ptr_fun.cc +++ b/tests/test_ptr_fun.cc @@ -34,7 +34,8 @@ bar(char i1) // Note: This doesn't work with some older versions of g++, // even when we specify the return type. // Hopefully those g++ versions are old enough now. -void bar(float i1) +void +bar(float i1) { result_stream << "bar(float " << i1 << ")"; } |