diff options
author | David Robillard <d@drobilla.net> | 2018-09-16 22:11:37 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-09-16 22:11:37 +0200 |
commit | 0c6bb92f3f59b6b86f3b7b56224677e79b2e6900 (patch) | |
tree | 40e3173eec8b493f22152372cc00782f2a076f92 /raul/Path.hpp | |
parent | 07396e8d23bb8724c5960b57aca33e08a97f4e52 (diff) | |
download | raul-0c6bb92f3f59b6b86f3b7b56224677e79b2e6900.tar.gz raul-0c6bb92f3f59b6b86f3b7b56224677e79b2e6900.tar.bz2 raul-0c6bb92f3f59b6b86f3b7b56224677e79b2e6900.zip |
Lint with clang-tidy
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) { |