From d389bda2cc02e1df25cf2b57fe780eaae24e54e7 Mon Sep 17 00:00:00 2001 From: gabime Date: Sun, 29 Apr 2018 01:26:10 +0300 Subject: [PATCH] moved file sinks sinks folder --- example/bench.cpp | 6 +++--- example/example.cpp | 6 +++--- include/spdlog/sinks/{file => }/daily_file_sink.h | 0 include/spdlog/sinks/{file => }/rotating_file_sink.h | 0 include/spdlog/sinks/{file => }/simple_file_sink.h | 0 5 files changed, 6 insertions(+), 6 deletions(-) rename include/spdlog/sinks/{file => }/daily_file_sink.h (100%) rename include/spdlog/sinks/{file => }/rotating_file_sink.h (100%) rename include/spdlog/sinks/{file => }/simple_file_sink.h (100%) diff --git a/example/bench.cpp b/example/bench.cpp index e89abe03..c65e0438 100644 --- a/example/bench.cpp +++ b/example/bench.cpp @@ -7,9 +7,9 @@ // bench.cpp : spdlog benchmarks // #include "spdlog/async.h" -#include "spdlog/sinks/file/simple_file_sink.h" -#include "spdlog/sinks/file/daily_file_sink.h" -#include "spdlog/sinks/file/rotating_file_sink.h" +#include "spdlog/sinks/simple_file_sink.h" +#include "spdlog/sinks/daily_file_sink.h" +#include "spdlog/sinks/rotating_file_sink.h" #include "spdlog/sinks/null_sink.h" #include "spdlog/spdlog.h" diff --git a/example/example.cpp b/example/example.cpp index 72289916..d1980235 100644 --- a/example/example.cpp +++ b/example/example.cpp @@ -10,9 +10,9 @@ #define SPDLOG_TRACE_ON #define SPDLOG_DEBUG_ON -#include "spdlog/sinks/file/simple_file_sink.h" -#include "spdlog/sinks/file/daily_file_sink.h" -#include "spdlog/sinks/file/rotating_file_sink.h" +#include "spdlog/sinks/simple_file_sink.h" +#include "spdlog/sinks/daily_file_sink.h" +#include "spdlog/sinks/rotating_file_sink.h" #include "spdlog/sinks/stdout_color_sinks.h" #include diff --git a/include/spdlog/sinks/file/daily_file_sink.h b/include/spdlog/sinks/daily_file_sink.h similarity index 100% rename from include/spdlog/sinks/file/daily_file_sink.h rename to include/spdlog/sinks/daily_file_sink.h diff --git a/include/spdlog/sinks/file/rotating_file_sink.h b/include/spdlog/sinks/rotating_file_sink.h similarity index 100% rename from include/spdlog/sinks/file/rotating_file_sink.h rename to include/spdlog/sinks/rotating_file_sink.h diff --git a/include/spdlog/sinks/file/simple_file_sink.h b/include/spdlog/sinks/simple_file_sink.h similarity index 100% rename from include/spdlog/sinks/file/simple_file_sink.h rename to include/spdlog/sinks/simple_file_sink.h