diff options
-rw-r--r-- | libbutl/path.ixx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libbutl/path.ixx b/libbutl/path.ixx index ae19b58..e7000ca 100644 --- a/libbutl/path.ixx +++ b/libbutl/path.ixx @@ -727,6 +727,8 @@ LIBBUTL_MODEXPORT namespace butl //@@ MOD Clang needs this for some reason. path_ = std::move (p.path_); this->name = std::move (p.name); } + + return *this; } template <typename P> @@ -738,5 +740,7 @@ LIBBUTL_MODEXPORT namespace butl //@@ MOD Clang needs this for some reason. path_ = p.path_; this->name = p.name; } + + return *this; } } |