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
#include "../common.h"
#include "../details/log_msg.h"
#include "../details/mpmc_bounded_q.h"
#include "../details/os.h"
#include "../formatter.h"
#include "../sinks/sink.h"
#include "spdlog/common.h"
#include "spdlog/details/log_msg.h"
#include "spdlog/details/mpmc_bounded_q.h"
#include "spdlog/details/os.h"
#include "spdlog/formatter.h"
#include "spdlog/sinks/sink.h"
#include <chrono>
#include <exception>

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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