diff options
-rw-r--r-- | raul/Atom.hpp | 2 | ||||
-rw-r--r-- | raul/Command.hpp | 4 | ||||
-rw-r--r-- | raul/TimeSlice.hpp | 1 | ||||
-rw-r--r-- | src/Maid.cpp | 1 |
4 files changed, 3 insertions, 5 deletions
diff --git a/raul/Atom.hpp b/raul/Atom.hpp index 8302bf9..44b4b0c 100644 --- a/raul/Atom.hpp +++ b/raul/Atom.hpp @@ -69,8 +69,6 @@ public: free(_blob_val); } - // Gotta love C++ boilerplate: - Atom(const Atom& copy) : _type(copy._type) { diff --git a/raul/Command.hpp b/raul/Command.hpp index 0632f63..5350852 100644 --- a/raul/Command.hpp +++ b/raul/Command.hpp @@ -18,8 +18,8 @@ #ifndef RAUL_COMMAND_HPP #define RAUL_COMMAND_HPP -#include "raul/Semaphore.hpp" #include <boost/utility.hpp> +#include "raul/Semaphore.hpp" namespace Raul { @@ -30,7 +30,7 @@ namespace Raul { * (OSC, GUI, etc) and waiting on the result. Works well for coarsely timed * events (e.g. 'play' clicked in a GUI). * - * Realtime safe on the commend executing side. + * Realtime safe on the command executing side. * * \ingroup raul */ diff --git a/raul/TimeSlice.hpp b/raul/TimeSlice.hpp index 781ba86..c2f1da3 100644 --- a/raul/TimeSlice.hpp +++ b/raul/TimeSlice.hpp @@ -22,7 +22,6 @@ #include <cmath> #include <boost/utility.hpp> #include "raul/TimeStamp.hpp" -#include "raul/lv2_event.h" namespace Raul { diff --git a/src/Maid.cpp b/src/Maid.cpp index bfe2e97..bbf5475 100644 --- a/src/Maid.cpp +++ b/src/Maid.cpp @@ -17,6 +17,7 @@ #include "raul/Maid.hpp" #include "raul/Deletable.hpp" +#include "raul/SharedPtr.hpp" namespace Raul { |