summaryrefslogtreecommitdiffstats
path: root/include/raul/Exception.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-01-02 17:58:58 +0100
committerDavid Robillard <d@drobilla.net>2021-01-02 17:58:58 +0100
commit45a608b57f75a6e1f1d8f33a6423da5d4947502b (patch)
treede315f0e39b2d32697d44c4018b934e1f582fc73 /include/raul/Exception.hpp
parent045ba07debf32f643f5af7a3a4ee794f226ed22e (diff)
downloadraul-45a608b57f75a6e1f1d8f33a6423da5d4947502b.tar.gz
raul-45a608b57f75a6e1f1d8f33a6423da5d4947502b.tar.bz2
raul-45a608b57f75a6e1f1d8f33a6423da5d4947502b.zip
Make namespace name lowercase
Diffstat (limited to 'include/raul/Exception.hpp')
-rw-r--r--include/raul/Exception.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/raul/Exception.hpp b/include/raul/Exception.hpp
index 919ece2..595800f 100644
--- a/include/raul/Exception.hpp
+++ b/include/raul/Exception.hpp
@@ -20,7 +20,7 @@
#include <string>
#include <utility>
-namespace Raul {
+namespace raul {
/** An exception (unexpected error). */
class Exception : public std::exception
@@ -38,6 +38,6 @@ private:
const std::string _what;
};
-} // namespace Raul
+} // namespace raul
#endif // RAUL_EXCEPTION_HPP