From 05c469e365ff337bedef82655b6686c3b66de60b Mon Sep 17 00:00:00 2001 From: cayetanobv Date: Mon, 16 Oct 2017 02:05:29 +0200 Subject: [PATCH] CLI config - flags added to preprocessor: addways and addrelations --- src/utilities/prog_options.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utilities/prog_options.cpp b/src/utilities/prog_options.cpp index 79446f78..6f5aec85 100644 --- a/src/utilities/prog_options.cpp +++ b/src/utilities/prog_options.cpp @@ -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";