Comment format
parent
48e3916ea2
commit
da1c65b394
|
@ -30,7 +30,7 @@ VectorValues::VectorValues(const VectorValues& other) {
|
||||||
/* ************************************************************************* */
|
/* ************************************************************************* */
|
||||||
VectorValues& VectorValues::operator=(const VectorValues& rhs) {
|
VectorValues& VectorValues::operator=(const VectorValues& rhs) {
|
||||||
if(this != &rhs) {
|
if(this != &rhs) {
|
||||||
resizeLike(rhs); // Copy structure
|
resizeLike(rhs); // Copy structure
|
||||||
values_ = rhs.values_; // Copy values
|
values_ = rhs.values_; // Copy values
|
||||||
}
|
}
|
||||||
return *this;
|
return *this;
|
||||||
|
|
Loading…
Reference in New Issue