diff options
author | Nikolas Klauser <nikolasklauser@berlin.de> | 2024-11-13 11:57:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-13 11:57:16 +0100 |
commit | b69ddbc62838f23ace237c206676b1ed1c882638 (patch) | |
tree | c61faf36c7d5022310899fe6bfe40b1f0460a046 /libcxx/src/filesystem/filesystem_clock.cpp | |
parent | 889b3c9487d114b9d082e9552599c8a8a8ccc660 (diff) | |
download | llvm-b69ddbc62838f23ace237c206676b1ed1c882638.zip llvm-b69ddbc62838f23ace237c206676b1ed1c882638.tar.gz llvm-b69ddbc62838f23ace237c206676b1ed1c882638.tar.bz2 |
[libc++] Make variables in templates inline (#115785)
The variables are all `constexpr`, which implies `inline`. Since they
aren't `constexpr` in C++03 they're also not `inline` there. Because of
that we define them out-of-line currently. Instead we can use the C++17
extension of `inline` variables, which results in the same weak
definitions of the variables but without having all the boilerplate.
Diffstat (limited to 'libcxx/src/filesystem/filesystem_clock.cpp')
-rw-r--r-- | libcxx/src/filesystem/filesystem_clock.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libcxx/src/filesystem/filesystem_clock.cpp b/libcxx/src/filesystem/filesystem_clock.cpp index 473a54a..e4cfb9e 100644 --- a/libcxx/src/filesystem/filesystem_clock.cpp +++ b/libcxx/src/filesystem/filesystem_clock.cpp @@ -36,7 +36,10 @@ _LIBCPP_BEGIN_NAMESPACE_FILESYSTEM +_LIBCPP_DIAGNOSTIC_PUSH +_LIBCPP_CLANG_DIAGNOSTIC_IGNORED("-Wdeprecated") const bool _FilesystemClock::is_steady; +_LIBCPP_DIAGNOSTIC_POP _FilesystemClock::time_point _FilesystemClock::now() noexcept { typedef chrono::duration<rep> __secs; |