options: whitespace

This commit is contained in:
Danny Robson 2015-06-09 15:41:08 +10:00
parent 9db4dd5b08
commit 1d65a7ed77
2 changed files with 163 additions and 161 deletions

View File

@ -307,14 +307,14 @@ bytesoption::execute (const std::string& data)
class helpoption : public option
{
protected:
protected:
static const char HELP_CHARACTER;
static const char *HELP_NAME;
static const char *HELP_DESCRIPTION;
processor * m_processor;
public:
public:
helpoption (processor * _processor):
option (HELP_CHARACTER, HELP_NAME, HELP_DESCRIPTION, false),
m_processor (_processor)
@ -531,7 +531,8 @@ processor::parse_args (int argc, const char ** argv)
//-----------------------------------------------------------------------------
void
processor::add_option (std::unique_ptr<option> opt) {
processor::add_option (std::unique_ptr<option> opt)
{
if (m_shortopt.find (opt->shortopt ()) != m_shortopt.end ())
throw std::logic_error ("Short option already exists");
if (m_longopt.find (opt->longopt ()) != m_longopt.end ())
@ -546,7 +547,8 @@ processor::add_option (std::unique_ptr<option> opt) {
//-----------------------------------------------------------------------------
std::unique_ptr<option>
processor::remove_option (char letter) {
processor::remove_option (char letter)
{
// Locate the option by short name
const auto s_candidate = m_shortopt.find (letter);
if (s_candidate == m_shortopt.end ())
@ -575,7 +577,8 @@ processor::remove_option (char letter) {
//-----------------------------------------------------------------------------
std::unique_ptr<option>
processor::remove_option (const char *name) {
processor::remove_option (const char *name)
{
// Locate the option by long name
const auto l_candidate = m_longopt.find (name);
if (l_candidate == m_longopt.end ())

View File

@ -178,7 +178,6 @@ namespace util {
return *val = defaultval;
}
}
};