summaryrefslogtreecommitdiffstats
path: root/include/ingen/ClashAvoider.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-01-02 18:17:04 +0100
committerDavid Robillard <d@drobilla.net>2021-01-02 18:17:04 +0100
commitf0e33dd09a390ca946e95a6f55fea397dca0ca1f (patch)
tree8d8befb3c7196ae119efc95ed6cdf2ba9cc00c32 /include/ingen/ClashAvoider.hpp
parentd2143bb3298d94ebef62ed50d377e89533a02b42 (diff)
downloadingen-f0e33dd09a390ca946e95a6f55fea397dca0ca1f.tar.gz
ingen-f0e33dd09a390ca946e95a6f55fea397dca0ca1f.tar.bz2
ingen-f0e33dd09a390ca946e95a6f55fea397dca0ca1f.zip
Update for latest raul
Diffstat (limited to 'include/ingen/ClashAvoider.hpp')
-rw-r--r--include/ingen/ClashAvoider.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/ingen/ClashAvoider.hpp b/include/ingen/ClashAvoider.hpp
index 1d2cebf0..c1d62754 100644
--- a/include/ingen/ClashAvoider.hpp
+++ b/include/ingen/ClashAvoider.hpp
@@ -38,9 +38,9 @@ public:
explicit ClashAvoider(const Store& store);
URI map_uri(const URI& in);
- Raul::Path map_path(const Raul::Path& in);
+ raul::Path map_path(const raul::Path& in);
- bool exists(const Raul::Path& path) const;
+ bool exists(const raul::Path& path) const;
/** Adjust a new label by increasing the numeric suffix if any.
*
@@ -48,13 +48,13 @@ public:
* @param new_path The new path that `old_path` was mapped to
* @param name The old name.
*/
- static std::string adjust_name(const Raul::Path& old_path,
- const Raul::Path& new_path,
+ static std::string adjust_name(const raul::Path& old_path,
+ const raul::Path& new_path,
std::string name);
private:
- using Offsets = std::map<Raul::Path, unsigned>;
- using SymbolMap = std::map<Raul::Path, Raul::Path>;
+ using Offsets = std::map<raul::Path, unsigned>;
+ using SymbolMap = std::map<raul::Path, raul::Path>;
const Store& _store;
Offsets _offsets;