Fixed more clang warnings

This commit is contained in:
Jan Möbius
2019-05-29 10:55:52 +02:00
parent 417a460645
commit 7c1a8012d5
11 changed files with 19 additions and 20 deletions

View File

@@ -363,7 +363,7 @@ public:
}
/// Make a copy of self.
PropertyT<bool>* clone() const
PropertyT<bool>* clone() const override
{
PropertyT<bool>* p = new PropertyT<bool>( *this );
return p;
@@ -451,7 +451,7 @@ public:
return ((value_type*) &data_[0])[_idx];
}
PropertyT<value_type>* clone() const {
PropertyT<value_type>* clone() const override {
PropertyT<value_type>* p = new PropertyT<value_type>( *this );
return p;
}