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