diff options
Diffstat (limited to 'raul')
-rw-r--r-- | raul/Exception.hpp | 4 | ||||
-rw-r--r-- | raul/Thread.hpp | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/raul/Exception.hpp b/raul/Exception.hpp index 4969ab2..b73a5a5 100644 --- a/raul/Exception.hpp +++ b/raul/Exception.hpp @@ -20,6 +20,8 @@ #ifndef RAUL_EXCEPTION_HPP #define RAUL_EXCEPTION_HPP +namespace Raul { + /** An exception (unexpected error). */ class Exception : public std::exception { public: @@ -31,4 +33,6 @@ private: const std::string _what; }; +} // namespace Raul + #endif // RAUL_EXCEPTION_HPP diff --git a/raul/Thread.hpp b/raul/Thread.hpp index ddd771b..9720007 100644 --- a/raul/Thread.hpp +++ b/raul/Thread.hpp @@ -21,8 +21,6 @@ namespace Raul { -struct ThreadImpl; - /** Abstract base class for a thread. * * Extend this and override the _run method to easily create a thread |