Remove a useless goto statement in main.cpp.

This commit is contained in:
Username404 2021-06-14 17:41:48 +02:00
parent 78cf850533
commit 9f5a6c1631
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 4 deletions

View File

@ -33,10 +33,7 @@ int main(int argc, char* argv[]) {
outputFileContent(outputFile, transpiledString);
}
}
} else {
cout << "No valid file provided.\n"; goto exitPoint;
}
} else cout << "No valid file provided.\n";
}
exitPoint:
return EXIT_SUCCESS;
}