We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd9a7b7 commit e0fd9f2Copy full SHA for e0fd9f2
src/ansi-c/c_typecheck_expr.cpp
@@ -2847,8 +2847,8 @@ exprt c_typecheck_baset::do_special_functions(
2847
if(expr.arguments().size() != 1)
2848
{
2849
error().source_location = expr.source_location();
2850
- error() << identifier << " expects one argument, " <<
2851
- expr.arguments().size() << " were provided" << eom;
+ error() << identifier << " expects one argument, "
+ << expr.arguments().size() << " were provided" << eom;
2852
throw 0;
2853
}
2854
// Replace expr with giant boolean that checks all the values
0 commit comments