diff options
Diffstat (limited to 'ingen/FilePath.hpp')
-rw-r--r-- | ingen/FilePath.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ingen/FilePath.hpp b/ingen/FilePath.hpp index 98893dfc..337553ef 100644 --- a/ingen/FilePath.hpp +++ b/ingen/FilePath.hpp @@ -54,8 +54,7 @@ public: FilePath(const FilePath&) = default; FilePath(FilePath&&) = default; - FilePath(string_type&& str) : _str(std::move(str)) {} - FilePath(const string_type& str) : _str(str) {} + FilePath(string_type str) : _str(std::move(str)) {} FilePath(const value_type* str) : _str(str) {} FilePath(const boost::basic_string_view<value_type>& sv) : _str(sv.data(), sv.length()) |