Compilation fix, when libconfig++ is missing

This commit is contained in:
Olivier Teulière 2010-01-28 22:23:47 +00:00
parent 5e890b476a
commit 1756185f08

View file

@ -121,6 +121,7 @@ namespace
}
#ifdef HAVE_LIBCONFIG
template<typename T>
void copySetting(const Config &srcConf, Config &dstConf, const char *path)
{
@ -131,6 +132,7 @@ namespace
dstConf.lookup(path) = t;
}
}
#endif
}