From 0d7ff9ac4712f0ff6c64dc8d67b73a7ff57ff461 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sat, 21 Mar 2020 13:35:04 +0200 Subject: [PATCH] Moved pattern formatter from spdlog/details to spdlog/ --- example/example.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/example/example.cpp b/example/example.cpp index 14e751d8..3a759ac7 100644 --- a/example/example.cpp +++ b/example/example.cpp @@ -255,9 +255,8 @@ void android_example() #endif -// log patterns can now contain custom flags! -// add custom flag '%*' which will be cound to a instance - +// log patterns can contain custom flags. +// this will add custom flag '%*' which will be bound to a instance #include "spdlog/pattern_formatter.h" class my_formatter_flag : public spdlog::custom_flag_formatter { @@ -274,7 +273,6 @@ public: } }; - void custom_flags_example() {