Skip to content
Snippets Groups Projects
Commit b666fba1 authored by Grigoris Pavlakis's avatar Grigoris Pavlakis Committed by kongr45gpen
Browse files

Fix tilde-negation hack used to pacify Vera

parent 942bcdaa
No related branches found
No related tags found
No related merge requests found
......@@ -36,8 +36,7 @@ TEST_CASE("ST[08] - Insert Tests") {
name = "test" + i;
String<FUNCNAMELENGTH> funcName(name.c_str());
if (~fms.funcPtrIndex.full()) { // not ! because vera whines about "using negation
// in its short form"
if (not fms.funcPtrIndex.full()) {
fms.include(funcName, &test);
}
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment