MCPcopy Create free account
hub / github.com/David-Haim/concurrencpp / assert_false

Function assert_false

test/source/infra/assertions.cpp:100–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

98 }
99
100 void assert_false(bool condition) {
101 if (condition) {
102 std::cerr << "assertion failed. expected: [false] actual: [true].";
103 std::abort();
104 }
105 }
106} // namespace concurrencpp::tests

Calls

no outgoing calls