File tree 2 files changed +4
-4
lines changed
libcxx/test/std/numerics/rand/rand.eng/rand.eng.lcong
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -84,12 +84,12 @@ int main(int, char**)
84
84
test_ext<unsigned int >();
85
85
test<unsigned long >();
86
86
// This isn't implemented on platforms without __int128
87
- #ifndef _LIBCPP_HAS_NO_INT128
87
+ #ifndef TEST_HAS_NO_INT128
88
88
test_ext<unsigned long >();
89
89
#endif
90
90
test<unsigned long long >();
91
91
// This isn't implemented on platforms without __int128
92
- #ifndef _LIBCPP_HAS_NO_INT128
92
+ #ifndef TEST_HAS_NO_INT128
93
93
test_ext<unsigned long long >();
94
94
#endif
95
95
Original file line number Diff line number Diff line change @@ -83,12 +83,12 @@ int main(int, char**)
83
83
test_ext<unsigned int >();
84
84
test<unsigned long >();
85
85
// This isn't implemented on platforms without __int128
86
- #ifndef _LIBCPP_HAS_NO_INT128
86
+ #ifndef TEST_HAS_NO_INT128
87
87
test_ext<unsigned long >();
88
88
#endif
89
89
test<unsigned long long >();
90
90
// This isn't implemented on platforms without __int128
91
- #ifndef _LIBCPP_HAS_NO_INT128
91
+ #ifndef TEST_HAS_NO_INT128
92
92
test_ext<unsigned long long >();
93
93
#endif
94
94
You can’t perform that action at this time.
0 commit comments