Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgabime <gmelman1@gmail.com>2019-08-19 13:12:22 +0300
committergabime <gmelman1@gmail.com>2019-08-19 13:12:22 +0300
commitda1d98d6033fabcfbbd1eeecc60152c54d982cd2 (patch)
tree7816b50a44e4fa47488187d08aad315cc3290bca /example
parent6683418983d31adc7dbc447d242dbbcb6c92a407 (diff)
Fix example
Diffstat (limited to 'example')
-rw-r--r--example/example.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/example.cpp b/example/example.cpp
index 2aab73d3..ce57fc9d 100644
--- a/example/example.cpp
+++ b/example/example.cpp
@@ -23,7 +23,7 @@ void clone_example();
int main(int, char *[])
{
- spdlog::info("Welcome to spdlog version {}{}.{}.{} !", SPDLOG_VER_MAJOR, SPDLOG_VER_MINOR, SPDLOG_VER_PATCH);
+ spdlog::info("Welcome to spdlog version {}.{}.{} !", SPDLOG_VER_MAJOR, SPDLOG_VER_MINOR, SPDLOG_VER_PATCH);
spdlog::warn("Easy padding in numbers like {:08d}", 12);
spdlog::critical("Support for int: {0:d}; hex: {0:x}; oct: {0:o}; bin: {0:b}", 42);
spdlog::info("Support for floats {:03.2f}", 1.23456);