trapexit
3 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
src/branches.cpp
|
|
@ -42,7 +42,7 @@ Branches::Impl::Impl(const u64 &default_minfreespace_) |
|
|
|
Branches::Impl& |
|
|
|
Branches::Impl::operator=(Branches::Impl &rval_) |
|
|
|
{ |
|
|
|
using type = std::vector<std::shared_ptr<Branch>>; |
|
|
|
using type = std::vector<Branch>; |
|
|
|
auto this_base = dynamic_cast<type*>(this); |
|
|
|
auto rval_base = dynamic_cast<type*>(&rval_); |
|
|
|
|
|
|
@ -54,7 +54,7 @@ Branches::Impl::operator=(Branches::Impl &rval_) |
|
|
|
Branches::Impl& |
|
|
|
Branches::Impl::operator=(Branches::Impl &&rval_) |
|
|
|
{ |
|
|
|
using type = std::vector<std::shared_ptr<Branch>>; |
|
|
|
using type = std::vector<Branch>; |
|
|
|
auto this_base = dynamic_cast<type*>(this); |
|
|
|
auto rval_base = dynamic_cast<type*>(&rval_); |
|
|
|
|
|
|
|