Merge pull request #6486 from ihsinme/ihsinme-patch-textFix

correction of the error text
This commit is contained in:
Mathias Vorreiter Pedersen
2021-08-16 14:49:33 +02:00
committed by GitHub
2 changed files with 5 additions and 4 deletions

View File

@@ -163,4 +163,5 @@ where
or
eots.dangerousCrementChanges()
)
select eots, "This expression may have undefined behavior."
select eots,
"This expression may have undefined behavior, because the order of evaluation is not specified."

View File

@@ -1,3 +1,3 @@
| test.c:13:10:13:21 | call to tmpFunction1 | This expression may have undefined behavior. |
| test.c:13:30:13:41 | call to tmpFunction2 | This expression may have undefined behavior. |
| test.c:16:15:16:20 | ... ++ | This expression may have undefined behavior. |
| test.c:13:10:13:21 | call to tmpFunction1 | This expression may have undefined behavior, because the order of evaluation is not specified. |
| test.c:13:30:13:41 | call to tmpFunction2 | This expression may have undefined behavior, because the order of evaluation is not specified. |
| test.c:16:15:16:20 | ... ++ | This expression may have undefined behavior, because the order of evaluation is not specified. |