Commit 13fb2550 authored by gabime's avatar gabime

Fixed issue #449

parent c6ad598a
......@@ -143,7 +143,7 @@ struct my_type
}
};
#include <spdlog/fmt/ostr.h> // must be included
#include "spdlog/fmt/ostr.h" // must be included
void user_defined_example()
{
spd::get("console")->info("user defined type: {}", my_type { 14 });
......
......@@ -7,7 +7,7 @@
#if defined(__ANDROID__)
#include <spdlog/sinks/sink.h>
#include "spdlog/sinks/sink.h"
#include <mutex>
#include <string>
......
......@@ -5,9 +5,9 @@
#pragma once
#include <spdlog/sinks/base_sink.h>
#include <spdlog/common.h>
#include <spdlog/details/os.h>
#include "spdlog/sinks/base_sink.h"
#include "spdlog/common.h"
#include "spdlog/details/os.h"
#include <string>
#include <map>
......
......@@ -5,10 +5,10 @@
#pragma once
#include <spdlog/details/log_msg.h>
#include <spdlog/details/null_mutex.h>
#include <spdlog/sinks/base_sink.h>
#include <spdlog/sinks/sink.h>
#include "spdlog/details/log_msg.h"
#include "spdlog/details/null_mutex.h"
#include "spdlog/sinks/base_sink.h"
#include "spdlog/sinks/sink.h"
#include <algorithm>
#include <mutex>
......
......@@ -7,8 +7,8 @@
#if defined(_MSC_VER)
#include <spdlog/sinks/base_sink.h>
#include <spdlog/details/null_mutex.h>
#include "spdlog/sinks/base_sink.h"
#include "spdlog/details/null_mutex.h"
#include <WinBase.h>
......
......@@ -5,8 +5,8 @@
#pragma once
#include <spdlog/sinks/base_sink.h>
#include <spdlog/details/null_mutex.h>
#include "spdlog/sinks/base_sink.h"
#include "spdlog/details/null_mutex.h"
#include <mutex>
......
......@@ -5,8 +5,8 @@
#pragma once
#include <spdlog/details/null_mutex.h>
#include <spdlog/sinks/base_sink.h>
#include "spdlog/details/null_mutex.h"
#include "spdlog/sinks/base_sink.h"
#include <ostream>
#include <mutex>
......
......@@ -5,12 +5,12 @@
#pragma once
#include <spdlog/common.h>
#include "spdlog/common.h"
#ifdef SPDLOG_ENABLE_SYSLOG
#include <spdlog/sinks/sink.h>
#include <spdlog/details/log_msg.h>
#include "spdlog/sinks/sink.h"
#include "spdlog/details/log_msg.h"
#include <array>
#include <string>
......
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