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>2021-12-04 15:42:34 +0300
committergabime <gmelman1@gmail.com>2021-12-11 17:23:20 +0300
commit2c21d9ecf83ea0b9360d635235e1446b43858298 (patch)
tree2e7a672f34af917c240f75ad9cfd8ece39350110 /example
parent2a45eff693d70680f74c2ca7bb1da6bdf53d6126 (diff)
Fixed example for custom_type
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 f38416ad..20f1d6cb 100644
--- a/example/example.cpp
+++ b/example/example.cpp
@@ -257,7 +257,7 @@ void multi_sink_example()
// User defined types logging by implementing operator<<
struct my_type
{
- int i;
+ int i = 0;
};
template<>