summaryrefslogtreecommitdiffstats
path: root/ingen
diff options
context:
space:
mode:
Diffstat (limited to 'ingen')
-rw-r--r--ingen/FilePath.hpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/ingen/FilePath.hpp b/ingen/FilePath.hpp
index f81e59c0..6bdd6044 100644
--- a/ingen/FilePath.hpp
+++ b/ingen/FilePath.hpp
@@ -48,14 +48,9 @@ public:
typedef std::basic_string<value_type> string_type;
- FilePath() noexcept = default;
+ FilePath() = default;
FilePath(const FilePath&) = default;
-
- FilePath(FilePath&& path) noexcept
- : _str(std::move(path._str))
- {
- path.clear();
- }
+ FilePath(FilePath&&) = default;
FilePath(string_type&& str) : _str(std::move(str)) {}
FilePath(const string_type& str) : _str(str) {}