From dfad81a3c8aee40a515f0ecefb0180a86368b54a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 23 Feb 2013 20:07:09 +0000 Subject: Remove Raul::fmt wrapper, the last vestige of boost dependency for Raul. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5077 a436a847-0d15-0410-975c-d299462d15a1 --- ingen/Log.hpp | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'ingen') 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 +#include + #include "lv2/lv2plug.in/ns/ext/log/log.h" -#include "raul/fmt.hpp" namespace Ingen { +typedef boost::basic_format 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; -- cgit v1.2.1