test/cli: fixed missing returns in test cases

This commit is contained in:
Daniel Marjamäki 2021-07-04 18:25:19 +02:00
parent fe8a0a87fb
commit 4fd33ef2b5
2 changed files with 2 additions and 0 deletions

View File

@ -3,4 +3,5 @@
int main() int main()
{ {
B b(); B b();
return 0;
} }

View File

@ -1,5 +1,6 @@
int main() { int main() {
// cppcheck-suppress unreadVariable // cppcheck-suppress unreadVariable
int i = 0; int i = 0;
return 0;
} }