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);
|
outputFileContent(outputFile, transpiledString);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else cout << "No valid file provided.\n";
|
||||||
cout << "No valid file provided.\n"; goto exitPoint;
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
exitPoint:
|
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue