summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/search_path.h
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2014-07-09 11:03:21 +1000
committerTim Mayberry <mojofunk@gmail.com>2015-08-18 15:09:44 +1000
commitea32eecf3d2fa22c87350a3b198f8c13707627c6 (patch)
treee084905f204892f28aada0f480d17e8bdb8f79d0 /libs/pbd/pbd/search_path.h
parent6847b59721546cbd20eaebf8db34f5d241aa9585 (diff)
Fix Searchpath::operator+ to return by value rather than reference and not modify *this
ladspa_search_path was the only function using this API and it is unaffected by the change
Diffstat (limited to 'libs/pbd/pbd/search_path.h')
-rw-r--r--libs/pbd/pbd/search_path.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/pbd/pbd/search_path.h b/libs/pbd/pbd/search_path.h
index 86ab5cdc64..74ac764dc0 100644
--- a/libs/pbd/pbd/search_path.h
+++ b/libs/pbd/pbd/search_path.h
@@ -90,12 +90,12 @@ public:
/**
* Concatenate another Searchpath onto this.
*/
- LIBPBD_TEMPLATE_MEMBER_API Searchpath& operator+ (const Searchpath& other);
+ LIBPBD_TEMPLATE_MEMBER_API const Searchpath operator+ (const Searchpath& other);
/**
* Add another path to the search path.
*/
- LIBPBD_TEMPLATE_MEMBER_API Searchpath& operator+ (const std::string& directory_path);
+ LIBPBD_TEMPLATE_MEMBER_API const Searchpath operator+ (const std::string& directory_path);
/**
* Remove all the directories in path from this.