File indexing completed on 2026-05-03 08:13:15
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef _LIBCPP___CHRONO_LOCAL_INFO_H
0013 #define _LIBCPP___CHRONO_LOCAL_INFO_H
0014
0015 #include <version>
0016
0017 #if _LIBCPP_HAS_EXPERIMENTAL_TZDB
0018
0019 # include <__chrono/sys_info.h>
0020 # include <__config>
0021
0022 # if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
0023 # pragma GCC system_header
0024 # endif
0025
0026 _LIBCPP_BEGIN_NAMESPACE_STD
0027
0028 # if _LIBCPP_STD_VER >= 20
0029
0030 namespace chrono {
0031
0032 struct local_info {
0033 static constexpr int unique = 0;
0034 static constexpr int nonexistent = 1;
0035 static constexpr int ambiguous = 2;
0036
0037 int result;
0038 sys_info first;
0039 sys_info second;
0040 };
0041
0042 }
0043
0044 # endif
0045
0046 _LIBCPP_END_NAMESPACE_STD
0047
0048 #endif
0049
0050 #endif