diff options
author | David Robillard <d@drobilla.net> | 2013-02-23 20:07:09 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-02-23 20:07:09 +0000 |
commit | dfad81a3c8aee40a515f0ecefb0180a86368b54a (patch) | |
tree | 0ddf00406358c4febaf18fed32e97cdd9c2f956c /ingen | |
parent | 6b6cb56b2ceab509569bfca247f108f2be5e25c0 (diff) | |
download | ingen-dfad81a3c8aee40a515f0ecefb0180a86368b54a.tar.gz ingen-dfad81a3c8aee40a515f0ecefb0180a86368b54a.tar.bz2 ingen-dfad81a3c8aee40a515f0ecefb0180a86368b54a.zip |
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
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; |