Trying to fix coverage.

This commit is contained in:
Godzil
2020-02-22 18:21:30 +00:00
parent 56095169eb
commit 9c35cfc4f3
5 changed files with 63 additions and 12 deletions

View File

@@ -46,6 +46,7 @@ public:
double_equal(this->emissive, b.emissive) &&
double_equal(this->refractiveIndex, b.refractiveIndex) &&
(this->colour == b.colour); };
bool operator!=(const Material &b) const { return !(*this == b); };
};