From 40f3c3f66f532941ca9576852827d636000f2477 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 19 Dec 2020 12:20:43 +0100 Subject: Clean up special member functions --- include/raul/Path.hpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'include/raul/Path.hpp') diff --git a/include/raul/Path.hpp b/include/raul/Path.hpp index 4fb3da1..984d95b 100644 --- a/include/raul/Path.hpp +++ b/include/raul/Path.hpp @@ -70,12 +70,13 @@ public: } } - /** Copy a Path. - * - * Note this is faster than constructing a Path from another Path's string - * since validation is unnecessary. - */ Path(const Path& path) = default; + Path& operator=(const Path& path) = default; + + Path(Path&& path) = default; + Path& operator=(Path&& path) = default; + + ~Path() = default; /** Return true iff `c` is a valid Path character. */ static inline bool is_valid_char(char c) { -- cgit v1.2.1