summaryrefslogtreecommitdiff
path: root/test/integration/cpp/basic.cpp
diff options
context:
space:
mode:
authorJason Evans <jasone@canonware.com>2017-01-19 18:15:45 -0800
committerJason Evans <jasone@canonware.com>2017-01-20 21:43:07 -0800
commitf408643a4c90d51ab8ddc1d68610650d5db87edf (patch)
treeb12815c633d56b792ab0171e923c6c5ab68b349c /test/integration/cpp/basic.cpp
parentc4c2592c834d8a37beb0a0d53842095160cbf9ee (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.cpp4
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);
}