C++: Capitalize alert message.

This commit is contained in:
Mathias Vorreiter Pedersen
2021-01-26 17:24:03 +01:00
parent 9c53e39394
commit 416aa49d99
2 changed files with 4 additions and 4 deletions

View File

@@ -124,4 +124,4 @@ where
not fc.isVariableUseBoundWithArgumentFunction() and
not fc.isVariableUseBoundWithGlobalVariable() and
not fc.isExistsCompilationFlagsBlockingRemoval()
select fc.getArgument(0), "this variable will not be cleared"
select fc.getArgument(0), "This variable will not be cleared."

View File

@@ -1,3 +1,3 @@
| test.c:13:9:13:13 | buff1 | this variable will not be cleared |
| test.c:35:9:35:13 | buff1 | this variable will not be cleared |
| test.c:43:9:43:13 | buff1 | this variable will not be cleared |
| test.c:13:9:13:13 | buff1 | This variable will not be cleared. |
| test.c:35:9:35:13 | buff1 | This variable will not be cleared. |
| test.c:43:9:43:13 | buff1 | This variable will not be cleared. |