Skip to content
Snippets Groups Projects
Commit 4d64380c authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Fix for init bug

parent 17f96b83
No related branches found
No related tags found
No related merge requests found
Pipeline #11207 failed
......@@ -536,7 +536,7 @@ namespace loguru
class LOGURU_EXPORT LogScopeRAII
{
public:
LogScopeRAII() : _file(nullptr), _line(0), _indent_stderr(false), _start_time_ns(0), _name({}) {} // No logging
LogScopeRAII() : _file(nullptr), _line(0), _indent_stderr(false), _start_time_ns(0), _name({0}) {} // No logging
LogScopeRAII(Verbosity verbosity, const char* file, unsigned line, LOGURU_FORMAT_STRING_TYPE format, ...) LOGURU_PRINTF_LIKE(5, 6);
~LogScopeRAII();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment