Commit bf307e24 authored by gabime's avatar gabime

comment

parent 4a00590a
...@@ -4,9 +4,13 @@ ...@@ -4,9 +4,13 @@
#pragma once #pragma once
// lite logger - a lite wrapper around spdlog::logger shared_ptr pimpl // lite logger - a pimpl around spdlog::logger shared_ptr:
// main purpose is much faster compile time and very cheap copy and move. // much faster compile times.
// also supports printf format for even faster compile times (by avoiding variadic templates) // can be used as lib or separate compilation unit.
// very cheap copy and move.
// supports printf format for even faster compile (by avoiding variadic templates).
//
// see lite-example/ for usage.
#include <memory> #include <memory>
#include <string> #include <string>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment