diff options
Diffstat (limited to 'raul/Path.hpp')
-rw-r--r-- | raul/Path.hpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/raul/Path.hpp b/raul/Path.hpp index d5116d2..a613e96 100644 --- a/raul/Path.hpp +++ b/raul/Path.hpp @@ -74,9 +74,7 @@ public: * Note this is faster than constructing a Path from another Path's string * since validation is unnecessary. */ - Path(const Path& path) - : std::basic_string<char>(path) - {} + Path(const Path& path) = default; /** Return true iff `c` is a valid Path character. */ static inline bool is_valid_char(char c) { |