File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ yulFuzzerUtil::TerminationReason yulFuzzerUtil::interpret(
64
64
}
65
65
catch (ExpressionNestingLimitReached const &)
66
66
{
67
- reason = TerminationReason::ExpresionNestingLimitReached ;
67
+ reason = TerminationReason::ExpressionNestingLimitReached ;
68
68
}
69
69
catch (ExplicitlyTerminated const &)
70
70
{
@@ -83,5 +83,5 @@ bool yulFuzzerUtil::resourceLimitsExceeded(TerminationReason _reason)
83
83
return
84
84
_reason == yulFuzzerUtil::TerminationReason::StepLimitReached ||
85
85
_reason == yulFuzzerUtil::TerminationReason::TraceLimitReached ||
86
- _reason == yulFuzzerUtil::TerminationReason::ExpresionNestingLimitReached ;
86
+ _reason == yulFuzzerUtil::TerminationReason::ExpressionNestingLimitReached ;
87
87
}
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ struct yulFuzzerUtil
28
28
ExplicitlyTerminated,
29
29
StepLimitReached,
30
30
TraceLimitReached,
31
- ExpresionNestingLimitReached ,
31
+ ExpressionNestingLimitReached ,
32
32
None
33
33
};
34
34
You can’t perform that action at this time.
0 commit comments