diff options
author | JF Bastien <jfbastien@apple.com> | 2019-01-09 22:56:45 +0000 |
---|---|---|
committer | JF Bastien <jfbastien@apple.com> | 2019-01-09 22:56:45 +0000 |
commit | 2f4df4c986505cd85645e7b54a9f688e72eb2238 (patch) | |
tree | f17c3c025d3dc7e1fa3891c0abc90430a7855d15 /libcxx/test/std/utilities/function.objects/bind | |
parent | 8c2fe4797cbb137cd8e96a556f238dc728d438af (diff) | |
download | bcm5719-llvm-2f4df4c986505cd85645e7b54a9f688e72eb2238.tar.gz bcm5719-llvm-2f4df4c986505cd85645e7b54a9f688e72eb2238.zip |
[NFC] Normalize some test 'main' signatures
There were 3 tests with 'int main(void)', and 6 with the return type on a different line. I'm about to send a patch for main in tests, and this NFC change is unrelated.
llvm-svn: 350770
Diffstat (limited to 'libcxx/test/std/utilities/function.objects/bind')
-rw-r--r-- | libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/nested.pass.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/nested.pass.cpp b/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/nested.pass.cpp index 5b660da617a..ac43dd769ed 100644 --- a/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/nested.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/nested.pass.cpp @@ -42,8 +42,7 @@ struct plus_one } }; -int -main() +int main() { using std::placeholders::_1; |