From 588eccba0da51b56ced9b03486b856497a84aca5 Mon Sep 17 00:00:00 2001 From: Eduardo Bart Date: Thu, 7 Apr 2011 05:45:58 -0300 Subject: [PATCH] compilation fixes --- src/framework/logger.cpp | 2 +- src/framework/util.cpp | 3 +-- src/framework/util.h | 1 + 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/framework/logger.cpp b/src/framework/logger.cpp index a5ce6309..1f54eb1f 100644 --- a/src/framework/logger.cpp +++ b/src/framework/logger.cpp @@ -26,7 +26,7 @@ #include "util.h" #include -#include +#include void Logger::log(int level, const char *trace, const char *format, ...) { diff --git a/src/framework/util.cpp b/src/framework/util.cpp index 727b80fa..9f08f9fd 100644 --- a/src/framework/util.cpp +++ b/src/framework/util.cpp @@ -23,8 +23,7 @@ #include "util.h" - -#include +#include std::string vformat(const char *format, va_list args) { diff --git a/src/framework/util.h b/src/framework/util.h index 403dace0..2dfca475 100644 --- a/src/framework/util.h +++ b/src/framework/util.h @@ -26,6 +26,7 @@ #define UTIL_H #include "logger.h" +#include #include /// Formatting like printf for std::string, va_list input version