From 17544b18246584a39f0cef674566a9cd860d99f4 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sun, 24 Apr 2016 09:10:58 -0700 Subject: [PATCH] Add compatibility headers --- cppformat/format.h | 2 ++ cppformat/posix.h | 2 ++ format.h | 2 -- posix.h | 2 -- 4 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 cppformat/format.h create mode 100644 cppformat/posix.h delete mode 100644 format.h delete mode 100644 posix.h diff --git a/cppformat/format.h b/cppformat/format.h new file mode 100644 index 00000000..3fbf86b8 --- /dev/null +++ b/cppformat/format.h @@ -0,0 +1,2 @@ +#include "../fmt/format.h" +#warning Including cppformat/format.h is deprecated. Include fmt/format.h instead. diff --git a/cppformat/posix.h b/cppformat/posix.h new file mode 100644 index 00000000..97b6fadc --- /dev/null +++ b/cppformat/posix.h @@ -0,0 +1,2 @@ +#include "../fmt/posix.h" +#warning Including cppformat/posix.h is deprecated. Include fmt/posix.h instead. diff --git a/format.h b/format.h deleted file mode 100644 index 6e2302c0..00000000 --- a/format.h +++ /dev/null @@ -1,2 +0,0 @@ -#include "cppformat/format.h" -#warning Including format.h from the top-level directory is deprecated. diff --git a/posix.h b/posix.h deleted file mode 100644 index f06d1fb6..00000000 --- a/posix.h +++ /dev/null @@ -1,2 +0,0 @@ -#include "cppformat/posix.h" -#warning Including posix.h from the top-level directory is deprecated.