diff options
| author | untodesu <kirill@untode.su> | 2025-06-28 01:59:49 +0500 |
|---|---|---|
| committer | untodesu <kirill@untode.su> | 2025-06-28 01:59:49 +0500 |
| commit | 61e5bcef2629e2d68b805a956a96fff264d4f74d (patch) | |
| tree | bca3a94bac79d34e3c0db57c77604f5a823ecbda /deps/include/spdlog/details/log_msg-inl.h | |
| parent | 88c01588aa0830e219eaa62588839e4d1e2883ce (diff) | |
| download | voxelius-61e5bcef2629e2d68b805a956a96fff264d4f74d.tar.bz2 voxelius-61e5bcef2629e2d68b805a956a96fff264d4f74d.zip | |
Restructure dependencies and update to C++20
- Nuked static_assert from almost everywhere in the project
- Nuked binary dependency support. Might add one later though
- Separated dependency headers into a separate include subdirectory
- Grafted a thirdpartylegalnotices.txt generator from RITEG
- Pushed development snapshot version to 2126 (26th week of 2025)
Diffstat (limited to 'deps/include/spdlog/details/log_msg-inl.h')
| -rw-r--r-- | deps/include/spdlog/details/log_msg-inl.h | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/deps/include/spdlog/details/log_msg-inl.h b/deps/include/spdlog/details/log_msg-inl.h deleted file mode 100644 index c6fc0de..0000000 --- a/deps/include/spdlog/details/log_msg-inl.h +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
-// Distributed under the MIT License (http://opensource.org/licenses/MIT)
-
-#pragma once
-
-#ifndef SPDLOG_HEADER_ONLY
- #include <spdlog/details/log_msg.h>
-#endif
-
-#include <spdlog/details/os.h>
-
-namespace spdlog {
-namespace details {
-
-SPDLOG_INLINE log_msg::log_msg(spdlog::log_clock::time_point log_time,
- spdlog::source_loc loc,
- string_view_t a_logger_name,
- spdlog::level::level_enum lvl,
- spdlog::string_view_t msg)
- : logger_name(a_logger_name),
- level(lvl),
- time(log_time)
-#ifndef SPDLOG_NO_THREAD_ID
- ,
- thread_id(os::thread_id())
-#endif
- ,
- source(loc),
- payload(msg) {
-}
-
-SPDLOG_INLINE log_msg::log_msg(spdlog::source_loc loc,
- string_view_t a_logger_name,
- spdlog::level::level_enum lvl,
- spdlog::string_view_t msg)
- : log_msg(os::now(), loc, a_logger_name, lvl, msg) {}
-
-SPDLOG_INLINE log_msg::log_msg(string_view_t a_logger_name,
- spdlog::level::level_enum lvl,
- spdlog::string_view_t msg)
- : log_msg(os::now(), source_loc{}, a_logger_name, lvl, msg) {}
-
-} // namespace details
-} // namespace spdlog
|
