Add exit(0) to dumpSTR and anotDump to fix compiler warning

This commit is contained in:
Guy Scharf 2021-07-08 10:23:57 -07:00
parent 10b3340359
commit bd21b1cda5
2 changed files with 4 additions and 1 deletions

View File

@ -125,4 +125,5 @@ int main(int argc, char *argv[]) {
} }
} }
exit(0);
} }

View File

@ -193,4 +193,6 @@ int main(int argc, char *argv[]) {
// delete &str; // delete &str;
QThread::sleep(1); QThread::sleep(1);
qDebug() << "Done"; qDebug() << "Done";
exit(0);
} }