Commit 4ec17f1a authored by gabime's avatar gabime

Normalized spdlog include paths

parent f886ae00
...@@ -12,12 +12,12 @@ ...@@ -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>
......
...@@ -5,8 +5,8 @@ ...@@ -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>
......
...@@ -43,7 +43,7 @@ Distributed under the MIT License (http://opensource.org/licenses/MIT) ...@@ -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>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
// //
#pragma once #pragma once
#include "../common.h" #include "spdlog/common.h"
#include <algorithm> #include <algorithm>
#include <chrono> #include <chrono>
......
...@@ -5,10 +5,10 @@ ...@@ -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>
......
...@@ -10,8 +10,8 @@ ...@@ -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>
......
#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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment