test/cli: fixed missing returns in test cases
This commit is contained in:
parent
fe8a0a87fb
commit
4fd33ef2b5
|
@ -3,4 +3,5 @@
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
B b();
|
B b();
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
int main() {
|
int main() {
|
||||||
// cppcheck-suppress unreadVariable
|
// cppcheck-suppress unreadVariable
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue