This commit is contained in:
Eelco Dolstra 2014-08-04 18:02:29 +02:00
parent 7018830509
commit daccd68999
3 changed files with 43 additions and 43 deletions

View file

@ -213,11 +213,11 @@ struct Settings {
private:
SettingsMap settings, overrides;
void get(string & res, const string & name);
void get(bool & res, const string & name);
void get(StringSet & res, const string & name);
void get(Strings & res, const string & name);
template<class N> void get(N & res, const string & name);
void _get(string & res, const string & name);
void _get(bool & res, const string & name);
void _get(StringSet & res, const string & name);
void _get(Strings & res, const string & name);
template<class N> void _get(N & res, const string & name);
};