Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
ajreynol committed Dec 20, 2024
1 parent 4331a9d commit 4ad5aaa
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/state.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -321,9 +321,11 @@ bool State::includeFile(const std::string& s, bool isSignature, bool isReference
Trace("state") << "...finished" << std::endl;
if (getAssumptionLevel()!=0)
{
Assert(!d_declsSizeCtx.empty() && d_declsSizeCtx.back()<d_decls.size());
Assert(!d_declsSizeCtx.empty() && d_declsSizeCtx.back() < d_decls.size());
EO_FATAL() << "Including file " << inputPath.getRawPath()
<< " did not preserve assumption scope. The most recent open assumption was " << d_decls[d_declsSizeCtx.back()] << ".";
<< " did not preserve assumption scope. The most recent open "
"assumption was "
<< d_decls[d_declsSizeCtx.back()] << ".";
}
return true;
}
Expand Down

0 comments on commit 4ad5aaa

Please sign in to comment.