Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Zolotarev <deathbaba@gmail.com>2011-06-12 19:45:54 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:19:29 +0300
commit02fe65ee87d5fafa1b5269977dbbbf81314078fb (patch)
tree02d88f57bc91b230c566b47f380337eb69181ccb /3party/gflags
parent010ce6804a844bd9b683facd9a05de3c136635d3 (diff)
Fixed gflags warning
Diffstat (limited to '3party/gflags')
-rw-r--r--3party/gflags/src/gflags_reporting.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/3party/gflags/src/gflags_reporting.cc b/3party/gflags/src/gflags_reporting.cc
index 7498e99d01..5644fada82 100644
--- a/3party/gflags/src/gflags_reporting.cc
+++ b/3party/gflags/src/gflags_reporting.cc
@@ -77,8 +77,8 @@ DEFINE_bool(helppackage, false,
"show help on all modules in the main package");
DEFINE_bool(helpxml, false,
"produce an xml version of help");
-//DEFINE_bool(version, false,
-// "show version and build info and exit");
+DEFINE_bool(gfversion, false,
+ "show version and build info and exit");
_START_GOOGLE_NAMESPACE_
@@ -433,11 +433,11 @@ void HandleCommandLineHelpFlags() {
ShowXMLOfFlags(progname);
commandlineflags_exitfunc(1);
- }// else if (FLAGS_version) {
-// ShowVersion();
+ } else if (FLAGS_gfversion) {
+ ShowVersion();
// Unlike help, we may be asking for version in a script, so return 0
-// commandlineflags_exitfunc(0);
-// }
+ commandlineflags_exitfunc(0);
+ }
}
_END_GOOGLE_NAMESPACE_