diff --git a/README.md b/README.md index 551f9ebc..d36b2f03 100644 --- a/README.md +++ b/README.md @@ -323,7 +323,7 @@ public: std::unique_ptr clone() const override { - return spdlog::std::make_unique(); + return std::make_unique(); } }; diff --git a/example/example.cpp b/example/example.cpp index 49398ad3..13e0a702 100644 --- a/example/example.cpp +++ b/example/example.cpp @@ -29,7 +29,6 @@ void replace_default_logger_example(); #include "spdlog/spdlog.h" #include "spdlog/cfg/env.h" // support for loading levels from the environment variable -#include "spdlog/fmt/ostr.h" // support for user defined types int main(int, char *[]) {