From b73ed1face2c609958556e6f2b7704bbd8aaa263 Mon Sep 17 00:00:00 2001 From: Arnur Nigmetov Date: Mon, 1 Jun 2020 18:10:22 -0700 Subject: Remove spdlog and fmt from matching distance code. --- matching/include/spdlog/details/log_msg.h | 55 ------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 matching/include/spdlog/details/log_msg.h (limited to 'matching/include/spdlog/details/log_msg.h') diff --git a/matching/include/spdlog/details/log_msg.h b/matching/include/spdlog/details/log_msg.h deleted file mode 100644 index 69422ba..0000000 --- a/matching/include/spdlog/details/log_msg.h +++ /dev/null @@ -1,55 +0,0 @@ -// -// Copyright(c) 2015 Gabi Melman. -// Distributed under the MIT License (http://opensource.org/licenses/MIT) -// - -#pragma once - -#include "spdlog/common.h" -#include "spdlog/details/os.h" - -#include -#include - -namespace spdlog { -namespace details { -struct log_msg -{ - - log_msg(source_loc loc, const std::string *loggers_name, level::level_enum lvl, string_view_t view) - : logger_name(loggers_name) - , level(lvl) -#ifndef SPDLOG_NO_DATETIME - , time(os::now()) -#endif - -#ifndef SPDLOG_NO_THREAD_ID - , thread_id(os::thread_id()) -#endif - , source(loc) - , payload(view) - { - } - - log_msg(const std::string *loggers_name, level::level_enum lvl, string_view_t view) - : log_msg(source_loc{}, loggers_name, lvl, view) - { - } - - log_msg(const log_msg &other) = default; - - const std::string *logger_name{nullptr}; - level::level_enum level{level::off}; - log_clock::time_point time; - size_t thread_id{0}; - size_t msg_id{0}; - - // wrapping the formatted text with color (updated by pattern_formatter). - mutable size_t color_range_start{0}; - mutable size_t color_range_end{0}; - - source_loc source; - const string_view_t payload; -}; -} // namespace details -} // namespace spdlog -- cgit v1.2.3