Comment format

release/4.3a0
Richard Roberts 2012-04-06 18:56:02 +00:00
parent 48e3916ea2
commit da1c65b394
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ VectorValues::VectorValues(const VectorValues& other) {
/* ************************************************************************* */
VectorValues& VectorValues::operator=(const VectorValues& rhs) {
if(this != &rhs) {
resizeLike(rhs); // Copy structure
resizeLike(rhs); // Copy structure
values_ = rhs.values_; // Copy values
}
return *this;