mirror of
https://github.com/gabime/spdlog.git
synced 2024-12-26 10:31:34 +08:00
comment
This commit is contained in:
parent
f74d3e7e94
commit
b78ae5ab10
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user