summaryrefslogtreecommitdiffstats
path: root/src/Configuration.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-11-28 23:20:45 +0100
committerDavid Robillard <d@drobilla.net>2020-11-28 23:20:45 +0100
commit228815993b4ecc31a345628fd85e6b75e564ecfe (patch)
tree06515a5e069dbfee55683767046a288f73719c43 /src/Configuration.cpp
parentf95ca1978dd463d1e6c640bb00d4d420ccb9d593 (diff)
downloadpatchage-228815993b4ecc31a345628fd85e6b75e564ecfe.tar.gz
patchage-228815993b4ecc31a345628fd85e6b75e564ecfe.tar.bz2
patchage-228815993b4ecc31a345628fd85e6b75e564ecfe.zip
Reduce use of raw new and delete
Diffstat (limited to 'src/Configuration.cpp')
-rw-r--r--src/Configuration.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Configuration.cpp b/src/Configuration.cpp
index 04b705a..8b0f03a 100644
--- a/src/Configuration.cpp
+++ b/src/Configuration.cpp
@@ -81,7 +81,7 @@ Configuration::Configuration()
bool
Configuration::get_module_location(const std::string& name,
SignalDirection type,
- Coord& loc)
+ Coord& loc) const
{
std::map<std::string, ModuleSettings>::const_iterator i =
_module_settings.find(name);