Moved format.cpp into spdlog.cpp - this way only one src file is needed

This commit is contained in:
gabime 2019-05-12 00:44:26 +03:00
parent 8b244ca988
commit 369b2f7cd2
1 changed files with 1 additions and 2 deletions

View File

@ -57,11 +57,10 @@ template class spdlog::sinks::ansicolor_sink<spdlog::details::console_stderr, sp
template void spdlog::details::fmt_helper::append_string_view(spdlog::string_view_t view, fmt::memory_buffer &dest);
template spdlog::string_view_t spdlog::details::fmt_helper::to_string_view(const fmt::memory_buffer &buf) SPDLOG_NOEXCEPT;
/////////////////////////////////////////////////////////////////////////
// Slightly modified version of fmt lib's format.cc source file
// Copyright (c) 2012 - 2016, Victor Zverovich
// All rights reserved.
/////////////////////////////////////////////////////////////////////////
#if !defined(SPDLOG_FMT_EXTERNAL)
#include "spdlog/fmt/bundled/format-inl.h"