Skip to content

Commit

Permalink
CLI config - flags added to preprocessor: addways and addrelations
Browse files Browse the repository at this point in the history
  • Loading branch information
cayetanobv committed Oct 16, 2017
1 parent ea4a569 commit 05c469e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utilities/prog_options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ process_command_line(po::variables_map &vm) {
std::cout << (vm.count("clean")? "D" : "Don't d") << "rop tables\n";
std::cout << (vm.count("no-index")? "D" : "Don't c") << "reate indexes\n";
std::cout << (vm.count("addnodes")? "A" : "Don't a") << "dd OSM nodes\n";
#if 0
std::cout << (vm.count("addways")? "A" : "Don't a") << "dd OSM ways\n";
std::cout << (vm.count("addrelations")? "A" : "Don't a") << "dd OSM relations\n";
#if 0
std::cout << (vm.count("fork")? "F" : "Don't f") << "ork\n";
#endif
std::cout << "***************************************************\n";
Expand Down

0 comments on commit 05c469e

Please sign in to comment.