1
0
mirror of https://github.com/gabime/spdlog.git synced 2025-03-15 02:29:54 +08:00

Normalized spdlog include paths

This commit is contained in:
gabime 2018-04-29 01:43:42 +03:00
parent f886ae0005
commit 4ec17f1a1a
7 changed files with 19 additions and 19 deletions

View File

@ -12,12 +12,12 @@
#pragma once #pragma once
#include "../common.h" #include "spdlog/common.h"
#include "../details/log_msg.h" #include "spdlog/details/log_msg.h"
#include "../details/mpmc_bounded_q.h" #include "spdlog/details/mpmc_bounded_q.h"
#include "../details/os.h" #include "spdlog/details/os.h"
#include "../formatter.h" #include "spdlog/formatter.h"
#include "../sinks/sink.h" #include "spdlog/sinks/sink.h"
#include <chrono> #include <chrono>
#include <exception> #include <exception>

View File

@ -5,8 +5,8 @@
#pragma once #pragma once
#include "../common.h" #include "spdlog/common.h"
#include "../details/os.h" #include "spdlog/details/os.h"
#include <string> #include <string>
#include <utility> #include <utility>

View File

@ -43,7 +43,7 @@ Distributed under the MIT License (http://opensource.org/licenses/MIT)
#pragma once #pragma once
#include "../common.h" #include "spdlog/common.h"
#include <atomic> #include <atomic>
#include <utility> #include <utility>

View File

@ -4,7 +4,7 @@
// //
#pragma once #pragma once
#include "../common.h" #include "spdlog/common.h"
#include <algorithm> #include <algorithm>
#include <chrono> #include <chrono>

View File

@ -5,10 +5,10 @@
#pragma once #pragma once
#include "../details/log_msg.h" #include "spdlog/details/log_msg.h"
#include "../details/os.h" #include "spdlog/details/os.h"
#include "../fmt/fmt.h" #include "spdlog/fmt/fmt.h"
#include "../formatter.h" #include "spdlog/formatter.h"
#include <array> #include <array>
#include <chrono> #include <chrono>

View File

@ -10,8 +10,8 @@
// If user requests a non existing logger, nullptr will be returned // If user requests a non existing logger, nullptr will be returned
// This class is thread safe // This class is thread safe
#include "../common.h" #include "spdlog/common.h"
#include "../logger.h" #include "spdlog/logger.h"
#include <chrono> #include <chrono>
#include <functional> #include <functional>

View File

@ -1,8 +1,8 @@
#pragma once #pragma once
#include "../details/log_msg.h" #include "spdlog/details/log_msg.h"
#include "../details/mpmc_bounded_q.h" #include "spdlog/details/mpmc_bounded_q.h"
#include "../details/os.h" #include "spdlog/details/os.h"
#include <chrono> #include <chrono>
#include <memory> #include <memory>