[libcxx-commits] [libcxx] 7efe388 - [libc++] [test] Add a missing `()` in TestEachIntegralType.
Arthur O'Dwyer via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Jul 13 12:58:38 PDT 2021
Author: Arthur O'Dwyer
Date: 2021-07-13T15:57:43-04:00
New Revision: 7efe3887858fe77da5c6687e3ac9ed9b00f9ed4e
URL: https://github.com/llvm/llvm-project/commit/7efe3887858fe77da5c6687e3ac9ed9b00f9ed4e
DIFF: https://github.com/llvm/llvm-project/commit/7efe3887858fe77da5c6687e3ac9ed9b00f9ed4e.diff
LOG: [libc++] [test] Add a missing `()` in TestEachIntegralType.
Added:
Modified:
libcxx/test/support/atomic_helpers.h
Removed:
################################################################################
diff --git a/libcxx/test/support/atomic_helpers.h b/libcxx/test/support/atomic_helpers.h
index a5c17035d0d90..3a71c09e48e0d 100644
--- a/libcxx/test/support/atomic_helpers.h
+++ b/libcxx/test/support/atomic_helpers.h
@@ -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
More information about the libcxx-commits
mailing list