compile gflags correctly, remove google namespace, use gflags instead, port all code using it

This commit is contained in:
Laurent Perron
2015-03-03 14:31:06 +01:00
parent 4376d7d052
commit 2a6f8942cc
47 changed files with 225 additions and 63 deletions

View File

@@ -83,7 +83,7 @@ void RunAllExamples() {
} // namespace operations_research
int main(int argc, char** argv) {
google::ParseCommandLineFlags( &argc, &argv, true);
gflags::ParseCommandLineFlags( &argc, &argv, true);
operations_research::RunAllExamples();
return 0;
}