Fix compilation on GCC 9

This commit is contained in:
Bartek Kryza
2022-06-12 15:19:42 +02:00
parent dde96abe45
commit c6ca403f2f
2 changed files with 2 additions and 20 deletions

View File

@@ -41,11 +41,11 @@ public:
path(const path &right) { path_ = right.path_; }
path &operator=(const path &right) noexcept = default;
path &operator=(const path &right) = default;
path(path &&right) noexcept = default;
path &operator=(path &&right) noexcept = default;
path &operator=(path &&right) = default;
path(std::initializer_list<std::string> ns)
{