From 45a608b57f75a6e1f1d8f33a6423da5d4947502b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 2 Jan 2021 17:58:58 +0100 Subject: Make namespace name lowercase --- include/raul/Path.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/raul/Path.hpp') 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 #include -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 -- cgit v1.2.1