mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
anonymized unused parameters
This commit is contained in:
parent
4695dc9354
commit
c559e348d4
@ -547,12 +547,12 @@ void printUsage(const std::string& helpPreamble,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// \cond 0
|
/// \cond 0
|
||||||
inline int noPositionalParameters_(std::set<std::string>& seenParams OPM_UNUSED,
|
inline int noPositionalParameters_(std::set<std::string>&,
|
||||||
std::string& errorMsg,
|
std::string& errorMsg,
|
||||||
int argc OPM_UNUSED,
|
int,
|
||||||
const char** argv,
|
const char** argv,
|
||||||
int paramIdx,
|
int paramIdx,
|
||||||
int posParamIdx OPM_UNUSED)
|
int)
|
||||||
{
|
{
|
||||||
errorMsg = std::string("Illegal parameter \"")+argv[paramIdx]+"\".";
|
errorMsg = std::string("Illegal parameter \"")+argv[paramIdx]+"\".";
|
||||||
return 0;
|
return 0;
|
||||||
@ -653,7 +653,7 @@ inline std::string parseQuotedValue_(std::string& s, const std::string& errorPre
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline std::string parseUnquotedValue_(std::string& s, const std::string& errorPrefix OPM_UNUSED)
|
inline std::string parseUnquotedValue_(std::string& s, const std::string&)
|
||||||
{
|
{
|
||||||
unsigned i;
|
unsigned i;
|
||||||
for (i = 0; i < s.size(); ++ i)
|
for (i = 0; i < s.size(); ++ i)
|
||||||
|
Loading…
Reference in New Issue
Block a user