Commit 5872cc4f authored by Kenton Varda's avatar Kenton Varda

These CHECKs should be recoverable...

parent 2a37f18c
......@@ -331,7 +331,7 @@ struct WireHelpers {
break;
}
case WirePointer::RESERVED_3:
FAIL_CHECK("Don't know how to handle RESERVED_3.");
FAIL_RECOVERABLE_CHECK("Don't know how to handle RESERVED_3.") {}
break;
}
}
......@@ -397,10 +397,10 @@ struct WireHelpers {
break;
}
case WirePointer::FAR:
FAIL_CHECK("Unexpected FAR pointer.");
FAIL_RECOVERABLE_CHECK("Unexpected FAR pointer.") {}
break;
case WirePointer::RESERVED_3:
FAIL_CHECK("Don't know how to handle RESERVED_3.");
FAIL_RECOVERABLE_CHECK("Don't know how to handle RESERVED_3.") {}
break;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment