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:
daylanKifky
2017-11-11 13:44:27 +01:00
parent 93be7713e0
commit 27e7412640
29 changed files with 81 additions and 81 deletions

View File

@@ -12,8 +12,8 @@
// 2. Format the message using the formatter function
// 3. Pass the formatted message to its sinks to performa the actual logging
#include "spdlog/sinks/base_sink.h"
#include "spdlog/common.h"
#include "sinks/base_sink.h"
#include "common.h"
#include <vector>
#include <memory>
@@ -132,4 +132,4 @@ protected:
};
}
#include "spdlog/details/logger_impl.h"
#include "details/logger_impl.h"