Fix clang-tidy warning after upgrading to clang-tidy-15
This commit is contained in:
@@ -45,7 +45,10 @@ public:
|
||||
std::copy(begin, end, std::back_inserter(path_));
|
||||
}
|
||||
|
||||
path(const path &right) { path_ = right.path_; }
|
||||
path(const path &right)
|
||||
: path_{right.path_}
|
||||
{
|
||||
}
|
||||
|
||||
path &operator=(const path &right) = default;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user