[cig-commits] r13563 - cs/cigma/trunk/src

luis at geodynamics.org luis at geodynamics.org
Tue Dec 9 18:14:25 PST 2008


Author: luis
Date: 2008-12-09 18:14:25 -0800 (Tue, 09 Dec 2008)
New Revision: 13563

Modified:
   cs/cigma/trunk/src/h5attr.cpp
Log:
Shortened option --value-type to just --type

Modified: cs/cigma/trunk/src/h5attr.cpp
===================================================================
--- cs/cigma/trunk/src/h5attr.cpp	2008-12-10 02:14:24 UTC (rev 13562)
+++ cs/cigma/trunk/src/h5attr.cpp	2008-12-10 02:14:25 UTC (rev 13563)
@@ -78,7 +78,7 @@
         ("location,l", po::value<string>(&attr_loc), "Where to store the attribute <file:path>")
         ("name,n", po::value<string>(&attr_name), "Name of the  attribute")
         ("value,v", po::value<string>(&attr_value), "Value of the attribute")
-        ("value-type,t", po::value<string>(&attr_type), "Type of attribute (default 'string')")
+        ("type,t", po::value<string>(&attr_type), "Type of attribute (default 'string')")
         ;
 
     other.add_options()
@@ -92,7 +92,7 @@
     args.add("location", 1);
     args.add("name", 1);
     args.add("value", 1);
-    args.add("value-type", 1);
+    args.add("type", 1);
 
     po::store(po::command_line_parser(argc, argv).options(all).positional(args).run(), vm);
 
@@ -128,7 +128,6 @@
     if (!vm.count("debug"))
     {
         TRI_LOG_OFF();
-        verbose = true;
     }
 
     if (vm.count("no-overwrite"))



More information about the CIG-COMMITS mailing list