Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FormerLurker/ArcWelderLib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'TCLAP/tclap/MultiSwitchArg.h')
-rw-r--r--TCLAP/tclap/MultiSwitchArg.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/TCLAP/tclap/MultiSwitchArg.h b/TCLAP/tclap/MultiSwitchArg.h
index 208d998..e333ea7 100644
--- a/TCLAP/tclap/MultiSwitchArg.h
+++ b/TCLAP/tclap/MultiSwitchArg.h
@@ -1,3 +1,5 @@
+// -*- Mode: c++; c-basic-offset: 4; tab-width: 4; -*-
+
/******************************************************************************
*
@@ -6,6 +8,7 @@
* Copyright (c) 2003, Michael E. Smoot .
* Copyright (c) 2004, Michael E. Smoot, Daniel Aarno.
* Copyright (c) 2005, Michael E. Smoot, Daniel Aarno, Erik Zeek.
+* Copyright (c) 2017, Google LLC
* All rights reserved.
*
* See the file COPYING in the top directory of this distribution for
@@ -108,7 +111,7 @@ class MultiSwitchArg : public SwitchArg
/**
* Returns int, the number of times the switch has been set.
*/
- int getValue();
+ int getValue() const { return _value; }
/**
* Returns the shortID for this Arg.
@@ -150,8 +153,6 @@ _default( init )
parser.add( this );
}
-inline int MultiSwitchArg::getValue() { return _value; }
-
inline bool MultiSwitchArg::processArg(int *i, std::vector<std::string>& args)
{
if ( _ignoreable && Arg::ignoreRest() )
@@ -192,7 +193,7 @@ inline bool MultiSwitchArg::processArg(int *i, std::vector<std::string>& args)
inline std::string
MultiSwitchArg::shortID(const std::string& val) const
{
- return Arg::shortID(val) + " ... ";
+ return Arg::shortID(val) + " ...";
}
inline std::string