Remove a useless goto statement in main.cpp.
This commit is contained in:
parent
78cf850533
commit
9f5a6c1631
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue