Replaced include <spdlog/..> with include "spdlog/.."

This commit is contained in:
gabime
2023-09-29 00:05:17 +03:00
parent a3934472c9
commit a0e631802c
25 changed files with 75 additions and 76 deletions

View File

@@ -17,7 +17,7 @@
//
// Example:
//
// #include <spdlog/sinks/dup_filter_sink.h>
// #include "spdlog/sinks/dup_filter_sink.h"
//
// int main() {
// auto dup_filter = std::make_shared<dup_filter_sink_st>(std::chrono::seconds(5),

View File

@@ -20,7 +20,7 @@
// If other units are needed (e.g. millis instead of double), include "fmt/chrono.h" and use
// "duration_cast<..>(sw.elapsed())":
//
// #include <spdlog/fmt/chrono.h>
// #include "spdlog/fmt/chrono.h"
//..
// using std::chrono::duration_cast;
// using std::chrono::milliseconds;