From 0a0c2c9cdd7c10e758b44b43ccd27df253e016c8 Mon Sep 17 00:00:00 2001 From: chronoxor Date: Tue, 11 Oct 2016 16:45:04 +0300 Subject: [PATCH] Remove unnecessary "fmt/" prefix which should be maintained with additional include_directories() in each project. (#397) (cherry picked from commit 1500f005250d7b3426f68f35dd1d6fe95542642e) --- fmt/format.cc | 2 +- fmt/ostream.cc | 2 +- fmt/ostream.h | 2 +- fmt/posix.cc | 2 +- fmt/posix.h | 2 +- fmt/time.h | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/fmt/format.cc b/fmt/format.cc index 33412585..2bd774e4 100644 --- a/fmt/format.cc +++ b/fmt/format.cc @@ -25,7 +25,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include "fmt/format.h" +#include "format.h" #include diff --git a/fmt/ostream.cc b/fmt/ostream.cc index f079197d..bcb67fe1 100644 --- a/fmt/ostream.cc +++ b/fmt/ostream.cc @@ -7,7 +7,7 @@ For the license information refer to format.h. */ -#include "fmt/ostream.h" +#include "ostream.h" namespace fmt { diff --git a/fmt/ostream.h b/fmt/ostream.h index 599d8d72..29483c1b 100644 --- a/fmt/ostream.h +++ b/fmt/ostream.h @@ -10,7 +10,7 @@ #ifndef FMT_OSTREAM_H_ #define FMT_OSTREAM_H_ -#include "fmt/format.h" +#include "format.h" #include namespace fmt { diff --git a/fmt/posix.cc b/fmt/posix.cc index bd25f61a..bc645560 100644 --- a/fmt/posix.cc +++ b/fmt/posix.cc @@ -12,7 +12,7 @@ # define _CRT_SECURE_NO_WARNINGS #endif -#include "fmt/posix.h" +#include "posix.h" #include #include diff --git a/fmt/posix.h b/fmt/posix.h index 96983417..99a9fbf8 100644 --- a/fmt/posix.h +++ b/fmt/posix.h @@ -27,7 +27,7 @@ # include // for LC_NUMERIC_MASK on OS X #endif -#include "fmt/format.h" +#include "format.h" #ifndef FMT_POSIX # if defined(_WIN32) && !defined(__MINGW32__) diff --git a/fmt/time.h b/fmt/time.h index 5375fc81..10225c03 100644 --- a/fmt/time.h +++ b/fmt/time.h @@ -10,7 +10,7 @@ #ifndef FMT_TIME_H_ #define FMT_TIME_H_ -#include "fmt/format.h" +#include "format.h" #include namespace fmt {