MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/TriangleMeshDistance / operator -

Method operator -

tests/catch.hpp:12335–12341  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12333namespace Catch {
12334
12335 Counts Counts::operator - ( Counts const& other ) const {
12336 Counts diff;
12337 diff.passed = passed - other.passed;
12338 diff.failed = failed - other.failed;
12339 diff.failedButOk = failedButOk - other.failedButOk;
12340 return diff;
12341 }
12342
12343 Counts& Counts::operator += ( Counts const& other ) {
12344 passed += other.passed;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected