Explicit call conversion operator on Setting class.

This fixes issue #196.
This commit is contained in:
kai
2012-10-13 19:48:13 +02:00
parent a7c7b514c0
commit 83d14c54da

View File

@@ -141,7 +141,7 @@ bool ConfigFile::read(const char* argv0, void* mainAddr, const char* filename)
int len = arr.getLength();
for (int i=0; i<len; i++)
{
std::string v = arr[i];
std::string v = arr[i].operator std::string();
// replace binpathkey with binpath
size_t p;