Skip to content
Snippets Groups Projects
Commit 3eedfe35 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

cleanup measurement from aql main binary

parent 05b6b917
No related branches found
No related tags found
1 merge request!141Merge jt
Pipeline #76342 passed with warnings
......@@ -31,7 +31,6 @@ std::istream& operator>> ( std::istream & in, std::pair < T, U > & value ) {
 
#include <string>
 
#include <alib/measure>
#include <alib/exception>
 
#include <tclap/CmdLine.h>
......@@ -106,9 +105,6 @@ int main ( int argc, char * argv[] ) {
 
TCLAP::CmdLine cmd ( "Algorithms Query Language shell", ' ', ALIB_VERSION_INFO ); // NOLINT(clang-analyzer-optin.cplusplus.VirtualCall)
 
TCLAP::SwitchArg measure ( "m", "measure", "Sets measure mode", false );
cmd.add ( measure );
TCLAP::SwitchArg verbose ( "v", "verbose", "Sets verbose mode (set verbose 1)", false );
cmd.add ( verbose );
 
......@@ -132,7 +128,6 @@ int main ( int argc, char * argv[] ) {
cmd.parse ( argc, argv );
 
common::GlobalData::verbose = verbose.isSet();
common::GlobalData::measure = measure.isSet();
 
/* --------------------------------------------------------------------------------------------------------- */
 
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment