MCPcopy Create free account
hub / github.com/ChaiScript/ChaiScript / operator -

Method operator -

unittests/catch.hpp:10819–10825  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10817namespace Catch {
10818
10819 Counts Counts::operator - ( Counts const& other ) const {
10820 Counts diff;
10821 diff.passed = passed - other.passed;
10822 diff.failed = failed - other.failed;
10823 diff.failedButOk = failedButOk - other.failedButOk;
10824 return diff;
10825 }
10826
10827 Counts& Counts::operator += ( Counts const& other ) {
10828 passed += other.passed;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected