Surface_mesh: Fix Property_container::swap()

This commit is contained in:
Andreas Fabri 2019-10-09 11:59:12 +02:00
parent f46c9888e6
commit 937423bb9f
1 changed files with 1 additions and 0 deletions

View File

@ -486,6 +486,7 @@ public:
void swap (Property_container& other)
{
this->parrays_.swap (other.parrays_);
std::swap(this->size_, other.size_);
}
private: