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-27 20:22:07 +0300
committergabime <gmelman1@gmail.com>2019-08-27 20:22:07 +0300
commitc97c025adb3f1724f80d5f9580f44c81793c2ffc (patch)
treebc803178fe671a2c7be5d1f6d5f5888aae8a757f /example
parentc55336e78dba5753c7071516df1b4245f601281a (diff)
clang-format
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 5aead62d..2a18677a 100644
--- a/example/example.cpp
+++ b/example/example.cpp
@@ -45,7 +45,7 @@ int main(int, char *[])
// Loggers can store in a ring buffer all messages (including debug/trace) for later inspection.
// When needed, call dump_backtrace() to see what happened:
spdlog::enable_backtrace(10); // create ring buffer with capacity of 10 messages
- for(int i = 0; i < 100; i++)
+ for (int i = 0; i < 100; i++)
{
spdlog::debug("Backtrace message {}", i); // not logged..
}