diff options
author | David Robillard <d@drobilla.net> | 2021-01-02 17:58:58 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-01-02 17:58:58 +0100 |
commit | 45a608b57f75a6e1f1d8f33a6423da5d4947502b (patch) | |
tree | de315f0e39b2d32697d44c4018b934e1f582fc73 /include/raul/Path.hpp | |
parent | 045ba07debf32f643f5af7a3a4ee794f226ed22e (diff) | |
download | raul-45a608b57f75a6e1f1d8f33a6423da5d4947502b.tar.gz raul-45a608b57f75a6e1f1d8f33a6423da5d4947502b.tar.bz2 raul-45a608b57f75a6e1f1d8f33a6423da5d4947502b.zip |
Make namespace name lowercase
Diffstat (limited to 'include/raul/Path.hpp')
-rw-r--r-- | include/raul/Path.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/raul/Path.hpp b/include/raul/Path.hpp index 8da985a..e5ca5c9 100644 --- a/include/raul/Path.hpp +++ b/include/raul/Path.hpp @@ -23,7 +23,7 @@ #include <cstddef> #include <string> -namespace Raul { +namespace raul { /** A restricted path of Symbols separated by, and beginning with, "/". * @@ -139,7 +139,7 @@ public: * * This is what is called the "basename" for file paths, the "method name" * for OSC paths, and so on. Since the root path does not have a symbol, - * this does not return a Raul::Symbol but may return the empty string. + * this does not return a raul::Symbol but may return the empty string. */ inline const char* symbol() const { @@ -175,7 +175,7 @@ public: } /** Return a direct child Path of this Path with the given Symbol. */ - inline Path child(const Raul::Symbol& symbol) const + inline Path child(const raul::Symbol& symbol) const { return Path(base() + symbol.c_str()); } @@ -223,6 +223,6 @@ public: } }; -} // namespace Raul +} // namespace raul #endif // RAUL_PATH_HPP |