diff options
Diffstat (limited to 'src/crepe/util/log.cpp')
-rw-r--r-- | src/crepe/util/log.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/crepe/util/log.cpp b/src/crepe/util/log.cpp index b46620d..f012c67 100644 --- a/src/crepe/util/log.cpp +++ b/src/crepe/util/log.cpp @@ -3,8 +3,8 @@ #include <cstdlib> #include <string> -#include "log.h" #include "fmt.h" +#include "log.h" using namespace crepe::util; @@ -38,4 +38,3 @@ void crepe::util::logf(log_level level, const char * fmt, ...) { log(level, va_stringf(args, fmt)); va_end(args); } - |