data, utility: Fixes to run Opensource Projects

templateSpecializationArgsAsWritten returning null caused a crash
VisitMemberExprInDeclBody for vardecl was missing
subdirectories for headersearchpaths, that the user does not need to add a hugh amount of folders
This commit is contained in:
Andreas Stallinger
2015-09-16 17:08:16 +02:00
parent fb5316cb7f
commit 73b1b77ca8
14 changed files with 110 additions and 16 deletions
+3 -3
View File
@@ -20,7 +20,7 @@ bool Settings::load(const FilePath& filePath)
else
{
clear();
LOG_WARNING("File for Settings not found.");
LOG_WARNING("File for Settings not found: " + filePath.str());
return false;
}
}
@@ -33,7 +33,7 @@ void Settings::save()
}
else
{
LOG_WARNING("Settings were not saved.");
LOG_WARNING("Settings were not saved: " + m_filePath.str());
}
}
@@ -47,7 +47,7 @@ void Settings::save(const FilePath& filePath)
}
else
{
LOG_WARNING("Settings were not saved.");
LOG_WARNING("Settings were not saved: " + filePath.str());
}
}