diff options
author | Jason Evans <jasone@canonware.com> | 2017-01-19 18:15:45 -0800 |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2017-01-20 21:43:07 -0800 |
commit | f408643a4c90d51ab8ddc1d68610650d5db87edf (patch) | |
tree | b12815c633d56b792ab0171e923c6c5ab68b349c /test/integration/cpp/basic.cpp | |
parent | c4c2592c834d8a37beb0a0d53842095160cbf9ee (diff) |
Remove extraneous parens around return arguments.
This resolves #540.
Diffstat (limited to 'test/integration/cpp/basic.cpp')
-rw-r--r-- | test/integration/cpp/basic.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/cpp/basic.cpp b/test/integration/cpp/basic.cpp index fe8874fa..65890ecd 100644 --- a/test/integration/cpp/basic.cpp +++ b/test/integration/cpp/basic.cpp @@ -20,6 +20,6 @@ TEST_END int main() { - return (test( - test_basic)); + return test( + test_basic); } |