Replace 0 by EXIT_SUCCESS

This commit is contained in:
Corentin Le Molgat
2018-11-07 09:52:37 +01:00
parent f7060f83a5
commit 9cad0c15ae
44 changed files with 45 additions and 45 deletions

View File

@@ -163,5 +163,5 @@ void Tsp() {
int main(int argc, char** argv) {
gflags::ParseCommandLineFlags(&argc, &argv, true);
operations_research::Tsp();
return 0;
return EXIT_SUCCESS;
}