Accecpt iterators by value in logger ctor insted of ref

This commit is contained in:
gabime
2018-10-04 02:06:39 +03:00
parent 10000c383a
commit 102c31a04c
4 changed files with 4 additions and 4 deletions

View File

@@ -36,7 +36,7 @@ public:
logger(std::string name, sinks_init_list sinks);
template<typename It>
logger(std::string name, const It &begin, const It &end);
logger(std::string name, It begin, It end);
virtual ~logger();