diff options
author | David Robillard <d@drobilla.net> | 2011-01-08 16:05:32 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-01-08 16:05:32 +0000 |
commit | ba3e966984bc8864bccb247daa9d78d5165e13bf (patch) | |
tree | f1d4a10a2989772298f6e57ddfdb847b259f54af /src/Thread.cpp | |
parent | a6a719577de47ad695b568b7bc451b9475104a28 (diff) | |
download | raul-ba3e966984bc8864bccb247daa9d78d5165e13bf.tar.gz raul-ba3e966984bc8864bccb247daa9d78d5165e13bf.tar.bz2 raul-ba3e966984bc8864bccb247daa9d78d5165e13bf.zip |
Code clean-up (cpplint).
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2796 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/Thread.cpp')
-rw-r--r-- | src/Thread.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Thread.cpp b/src/Thread.cpp index 35cb569..d45f363 100644 --- a/src/Thread.cpp +++ b/src/Thread.cpp @@ -16,12 +16,14 @@ */ #include <cstring> +#include <string> + #include "raul/log.hpp" #include "raul/Thread.hpp" #define LOG(s) s << "[" << _name << "] " -using namespace std; +using std::endl; namespace Raul { |