Merge pull request #2608 from dtzWill/fix/issue-2546

EvalState::resetFileCache: clear parse cache as well as eval cache
This commit is contained in:
Eelco Dolstra
2019-01-10 20:56:31 +01:00
committed by GitHub

View File

@@ -757,6 +757,7 @@ void EvalState::evalFile(const Path & path_, Value & v)
void EvalState::resetFileCache()
{
fileEvalCache.clear();
fileParseCache.clear();
}