[libc++] [test] Add a missing `()` in TestEachIntegralType.
authorArthur O'Dwyer <arthur.j.odwyer@gmail.com>
Tue, 13 Jul 2021 19:57:43 +0000 (15:57 -0400)
committerArthur O'Dwyer <arthur.j.odwyer@gmail.com>
Tue, 13 Jul 2021 19:57:43 +0000 (15:57 -0400)
libcxx/test/support/atomic_helpers.h

index a5c1703..3a71c09 100644 (file)
@@ -77,7 +77,7 @@ struct TestEachIntegralType {
     TestFunctor<unsigned long>()();
     TestFunctor<long long>()();
     TestFunctor<unsigned long long>()();
-    TestFunctor<wchar_t>();
+    TestFunctor<wchar_t>()();
 #if TEST_STD_VER > 17 && defined(__cpp_char8_t)
     TestFunctor<char8_t>()();
 #endif