Config: Removed unused ctor

This commit is contained in:
Paul Beckingham 2015-10-28 21:32:33 -04:00
parent b7bbd96b62
commit 923991df1b
2 changed files with 0 additions and 9 deletions

View file

@ -477,13 +477,6 @@ Config::Config ()
{
}
////////////////////////////////////////////////////////////////////////////////
Config::Config (const std::string& file)
{
setDefaults ();
load (file);
}
////////////////////////////////////////////////////////////////////////////////
// Read the Configuration file and populate the *this map. The file format is
// simply lines with name=value pairs. Whitespace between name, = and value is

View file

@ -36,8 +36,6 @@ class Config : public std::map <std::string, std::string>
{
public:
Config ();
Config (const std::string&);
Config (const Config&);
Config& operator= (const Config&);