Inspection: Code redundancies

This commit is contained in:
Urs Fleisch
2024-01-20 23:30:40 +01:00
parent 580b0b0c82
commit 7bcfb96098
51 changed files with 154 additions and 164 deletions

View File

@ -37,7 +37,7 @@
int main(int argc, char* argv[])
{
std::string testPath = (argc > 1) ? std::string(argv[1]) : "";
std::string testPath = argc > 1 ? std::string(argv[1]) : "";
// Create the event manager and test controller
CppUnit::TestResult controller;