mirror of
https://github.com/gabime/spdlog.git
synced 2025-09-30 02:19:35 +08:00
modified path on quoted #includes
Paths pointing to the root of the library where replaced for ones relatives to each file. For example, inside /include/spdlog/details/file_helper.h: This will look for os.h in /include/spdlog/details/spdlog/details/ which doesn't exists. replaced with:
This commit is contained in:
@@ -9,9 +9,9 @@
|
||||
|
||||
#define SPDLOG_VERSION "0.14.0"
|
||||
|
||||
#include "spdlog/tweakme.h"
|
||||
#include "spdlog/common.h"
|
||||
#include "spdlog/logger.h"
|
||||
#include "tweakme.h"
|
||||
#include "common.h"
|
||||
#include "logger.h"
|
||||
|
||||
#include <memory>
|
||||
#include <functional>
|
||||
@@ -191,4 +191,4 @@ void drop_all();
|
||||
}
|
||||
|
||||
|
||||
#include "spdlog/details/spdlog_impl.h"
|
||||
#include "details/spdlog_impl.h"
|
||||
|
Reference in New Issue
Block a user