From 3e28d9ab5af218fb9df184ecc693f383c0aca1da Mon Sep 17 00:00:00 2001 From: gabime Date: Sun, 29 Apr 2018 00:44:35 +0300 Subject: [PATCH] Renamed default factory --- include/spdlog/spdlog.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/spdlog/spdlog.h b/include/spdlog/spdlog.h index b9f6b3a4..476ed4f4 100644 --- a/include/spdlog/spdlog.h +++ b/include/spdlog/spdlog.h @@ -19,7 +19,7 @@ namespace spdlog { // Default logger factory- creates synchronous loggers -struct create_sync +struct create_synchronous { template @@ -32,7 +32,7 @@ struct create_sync } }; -using default_factory = create_sync; +using default_factory = create_synchronous; // Create and register a logger with a templated sink type // The logger's level, formatter and flush level will be set according the global settings.