From f408643a4c90d51ab8ddc1d68610650d5db87edf Mon Sep 17 00:00:00 2001 From: Jason Evans Date: Thu, 19 Jan 2017 18:15:45 -0800 Subject: Remove extraneous parens around return arguments. This resolves #540. --- test/integration/cpp/basic.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/integration/cpp/basic.cpp') 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); } -- cgit v1.2.3