Applied hicpp-noexcept-move clang-tidy fixes

This commit is contained in:
Bartek Kryza
2022-12-21 17:31:45 +01:00
parent 25f787785f
commit 217edd27bd
4 changed files with 7 additions and 7 deletions

View File

@@ -51,7 +51,7 @@ public:
path(path &&right) noexcept = default;
path &operator=(path &&right) = default;
path &operator=(path &&right) noexcept = default;
path(std::initializer_list<std::string> ns)
{