From 8f9ddf452de1b212caa51b8a60735bb8d9300b19 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 24 Apr 2021 06:44:57 -0700 Subject: [PATCH] Remove deprecated posix.h --- CMakeLists.txt | 3 +-- include/fmt/posix.h | 2 -- 2 files changed, 1 insertion(+), 4 deletions(-) delete mode 100644 include/fmt/posix.h diff --git a/CMakeLists.txt b/CMakeLists.txt index f24f3f91..42279acf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -186,8 +186,7 @@ endfunction() # Define the fmt library, its includes and the needed defines. add_headers(FMT_HEADERS args.h chrono.h color.h compile.h core.h format.h - format-inl.h locale.h os.h ostream.h posix.h printf.h - ranges.h) + format-inl.h locale.h os.h ostream.h printf.h ranges.h) if (FMT_OS) set(FMT_SOURCES src/format.cc src/os.cc) else() diff --git a/include/fmt/posix.h b/include/fmt/posix.h deleted file mode 100644 index da19e9d5..00000000 --- a/include/fmt/posix.h +++ /dev/null @@ -1,2 +0,0 @@ -#include "os.h" -#warning "fmt/posix.h is deprecated; use fmt/os.h instead"