diff options
Diffstat (limited to 'ingen')
-rw-r--r-- | ingen/Log.hpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/ingen/Log.hpp b/ingen/Log.hpp index 750d6ec3..3574ae3e 100644 --- a/ingen/Log.hpp +++ b/ingen/Log.hpp @@ -19,11 +19,14 @@ #include <string> +#include <boost/format.hpp> + #include "lv2/lv2plug.in/ns/ext/log/log.h" -#include "raul/fmt.hpp" namespace Ingen { +typedef boost::basic_format<char> fmt; + class URIs; class Log { @@ -34,9 +37,9 @@ public: void info(const std::string& msg); void warn(const std::string& msg); - inline void error(const Raul::fmt& fmt) { error(fmt.str()); } - inline void info(const Raul::fmt& fmt) { info(fmt.str()); } - inline void warn(const Raul::fmt& fmt) { warn(fmt.str()); } + inline void error(const fmt& fmt) { error(fmt.str()); } + inline void info(const fmt& fmt) { info(fmt.str()); } + inline void warn(const fmt& fmt) { warn(fmt.str()); } private: LV2_Log_Log* _log; |