diff options
| author | Jason Evans <jasone@canonware.com> | 2017-01-20 02:15:45 (GMT) |
|---|---|---|
| committer | Jason Evans <jasone@canonware.com> | 2017-01-21 05:43:07 (GMT) |
| commit | f408643a4c90d51ab8ddc1d68610650d5db87edf (patch) | |
| tree | b12815c633d56b792ab0171e923c6c5ab68b349c /test/integration/cpp/basic.cpp | |
| parent | c4c2592c834d8a37beb0a0d53842095160cbf9ee (diff) | |
| download | jemalloc-f408643a4c90d51ab8ddc1d68610650d5db87edf.zip jemalloc-f408643a4c90d51ab8ddc1d68610650d5db87edf.tar.gz jemalloc-f408643a4c90d51ab8ddc1d68610650d5db87edf.tar.bz2 | |
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 fe8874f..65890ec 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); } |
