Skip to content

Commit 6bc55f5

Browse files
author
Clement Champetier
committed
OptionChecker: update display
1 parent 6c91e7a commit 6bc55f5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/optionChecker/optionChecker.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
#include <string>
77
#include <iostream>
8-
#include <iomanip>
98
#include <utility> //pair
109

1110
int optionChecker( const std::string& inputfilename )
@@ -23,8 +22,9 @@ int optionChecker( const std::string& inputfilename )
2322
{
2423
std::cout << std::left;
2524
std::cout << "****************************" << std::endl;
26-
std::cout << std::setw(30) << option.getName();
27-
std::cout << ": " << option.getHelp() << std::endl;
25+
std::cout << "Name: " << option.getName() << std::endl;
26+
std::cout << "Unit : " << option.getUnit() << std::endl;
27+
std::cout << "Help: " << option.getHelp() << std::endl;
2828
std::cout << "Type: " << option.getType() << std::endl;
2929

3030
// get default value

0 commit comments

Comments
 (0)