diff options
author | David Robillard <d@drobilla.net> | 2020-07-18 10:36:10 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-07-18 10:37:57 +0200 |
commit | 3e0503d54d22daec52478185b24fd8fc398e69c3 (patch) | |
tree | 13e7c704b16832f39ae87981068ac810c984b666 | |
parent | 4d10fb549416791393adcf06bd19684123665b0d (diff) | |
download | raul-3e0503d54d22daec52478185b24fd8fc398e69c3.tar.gz raul-3e0503d54d22daec52478185b24fd8fc398e69c3.tar.bz2 raul-3e0503d54d22daec52478185b24fd8fc398e69c3.zip |
Remove superfluous const
-rw-r--r-- | raul/Path.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/raul/Path.hpp b/raul/Path.hpp index a613e96..6237ddd 100644 --- a/raul/Path.hpp +++ b/raul/Path.hpp @@ -167,7 +167,7 @@ public: * The returned string is such that appending a valid Symbol to it is * guaranteed to form a valid path. */ - inline const std::string base() const { + inline std::string base() const { if (is_root()) { return *this; } else { |