diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | raul/fmt.hpp | 28 | ||||
-rw-r--r-- | test/queue_test.cpp | 1 | ||||
-rw-r--r-- | wscript | 2 |
4 files changed, 1 insertions, 31 deletions
@@ -1,6 +1,7 @@ raul (9999) unstable; * Remove glib dpendency + * Remove boost dependency * Remove OSC and RDF library dependent code * Remove remaining library code, now header only * Improve RingBuffer diff --git a/raul/fmt.hpp b/raul/fmt.hpp deleted file mode 100644 index 8af82f0..0000000 --- a/raul/fmt.hpp +++ /dev/null @@ -1,28 +0,0 @@ -/* - This file is part of Raul. - Copyright 2007-2012 David Robillard <http://drobilla.net> - - Raul is free software: you can redistribute it and/or modify it under the - terms of the GNU General Public License as published by the Free Software - Foundation, either version 3 of the License, or any later version. - - Raul is distributed in the hope that it will be useful, but WITHOUT ANY - WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. See the GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Raul. If not, see <http://www.gnu.org/licenses/>. -*/ - -#ifndef RAUL_FMT_HPP -#define RAUL_FMT_HPP - -#include <boost/format.hpp> - -namespace Raul { - -typedef boost::basic_format<char> fmt; - -} // namespace Raul - -#endif // RAUL_FMT_HPP diff --git a/test/queue_test.cpp b/test/queue_test.cpp index 15e5975..7749db0 100644 --- a/test/queue_test.cpp +++ b/test/queue_test.cpp @@ -27,7 +27,6 @@ #include "raul/SRMWQueue.hpp" #include "raul/SRSWQueue.hpp" -#include "raul/fmt.hpp" using namespace std; using namespace Raul; @@ -37,8 +37,6 @@ def options(opt): autowaf.set_options(opt) opt.add_option('--test', action='store_true', dest='build_tests', help="Build unit tests") - opt.add_option('--cpp0x', action='store_true', dest='cpp0x', - help="Use C++0x smart pointers instead of boost") def configure(conf): conf.load('compiler_cxx') |