File tree Expand file tree Collapse file tree 3 files changed +10
-13
lines changed Expand file tree Collapse file tree 3 files changed +10
-13
lines changed Original file line number Diff line number Diff line change 36
36
#include " test_macros.h"
37
37
38
38
// class gps_clock
39
- using rep = std::chrono::gps_clock::rep;
40
- using period = std::chrono::gps_clock::period;
41
- using duration = std::chrono::gps_clock::duration;
42
- using time_point = std::chrono::gps_clock::time_point;
43
- constexpr bool is_steady = std::chrono::gps_clock::is_steady;
39
+ using rep = std::chrono::gps_clock::rep;
40
+ using period = std::chrono::gps_clock::period;
41
+ using duration = std::chrono::gps_clock::duration;
42
+ using time_point = std::chrono::gps_clock::time_point;
43
+ [[maybe_unused]] constexpr bool is_steady = std::chrono::gps_clock::is_steady;
44
44
45
45
// Tests the values. part of them are implementation defined.
46
46
LIBCPP_STATIC_ASSERT (std::same_as<rep, std::chrono::utc_clock::rep>);
Original file line number Diff line number Diff line change 36
36
#include " test_macros.h"
37
37
38
38
// class tai_clock
39
- using rep = std::chrono::tai_clock::rep;
40
- using period = std::chrono::tai_clock::period;
41
- using duration = std::chrono::tai_clock::duration;
42
- using time_point = std::chrono::tai_clock::time_point;
43
- constexpr bool is_steady = std::chrono::tai_clock::is_steady;
39
+ using rep = std::chrono::tai_clock::rep;
40
+ using period = std::chrono::tai_clock::period;
41
+ using duration = std::chrono::tai_clock::duration;
42
+ using time_point = std::chrono::tai_clock::time_point;
43
+ [[maybe_unused]] constexpr bool is_steady = std::chrono::tai_clock::is_steady;
44
44
45
45
// Tests the values. part of them are implementation defined.
46
46
LIBCPP_STATIC_ASSERT (std::same_as<rep, std::chrono::utc_clock::rep>);
Original file line number Diff line number Diff line change @@ -268,9 +268,6 @@ static void test_valid_values_day() {
268
268
lfmt,
269
269
cr::tai_seconds (1'613'259' 090s)); // 23:31:30 TAI Friday, 13 February 2009
270
270
271
- // Use the global locale (fr_FR)
272
- check (SV (" %d='01'\t %Od='01'\t %e=' 1'\t %Oe=' 1'\n " ),
273
- lfmt,
274
271
#else // defined(_WIN32) || defined(__APPLE__) || defined(_AIX) || defined(__FreeBSD__)
275
272
check (loc,
276
273
SV (" %d='01'\t %Od='一'\t %e=' 1'\t %Oe='一'\n " ),
You can’t perform that action at this time.
0 commit comments