Skip to content
Snippets Groups Projects
Commit 52a26511 authored by Oliver Sander's avatar Oliver Sander
Browse files

remove undocumented method get() which used a char* instead of std::string

[[Imported from SVN: r4981]]
parent bad91eb3
No related branches found
No related tags found
No related merge requests found
......@@ -191,13 +191,6 @@ string ConfigParser::get(const string& key, string defaultValue)
}
string ConfigParser::get(const string& key, char* defaultValue)
{
string s = defaultValue;
return get(key, s);
}
int ConfigParser::get(const string& key, int defaultValue)
{
stringstream stream;
......
......@@ -148,9 +148,6 @@ namespace Dune {
std::string get(const std::string& key, std::string defaultValue);
std::string get(const std::string& key, char* defaultValue);
/** \brief get value as int
*
* Returns value for given key interpreted as int.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment