We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Path
1 parent 91ff9b6 commit efe7a4cCopy full SHA for efe7a4c
1 file changed
src/odr/internal/common/path.hpp
@@ -19,6 +19,12 @@ class Path {
19
explicit Path(std::string_view string_view);
20
explicit Path(const std::filesystem::path &path);
21
22
+ Path(const Path &other) noexcept = default;
23
+ Path(Path &&other) noexcept = default;
24
+ virtual ~Path() noexcept = default;
25
+ Path &operator=(const Path &other) noexcept = default;
26
+ Path &operator=(Path &&other) noexcept = default;
27
+
28
bool operator==(const Path &other) const noexcept;
29
bool operator!=(const Path &other) const noexcept;
30
bool operator<(const Path &other) const noexcept;
0 commit comments