Skip to content

Commit

Permalink
Removed unnecessary debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
cabrust committed Mar 21, 2015
1 parent 52f4e16 commit e1c65ea
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/util/ConfigParsing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,15 +137,13 @@ void ParseDatumParamIfPossible ( std::string line, std::string identifier, datum
line = line.substr ( 0, end_pos );

std::string size = line.substr ( size_pos + ilen );
LOGDEBUG << "Size string: " << size;

std::stringstream ss;
ss << size;
datum d;
ss >> d;

k = d; //std::atof ( size.c_str() );
LOGDEBUG << "Parsed value: " << k;
}

}

0 comments on commit e1c65ea

Please sign in to comment.