From a74d8698eb67337fafe48d2359a9e1bfaa8b1272 Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 8 May 2001 17:37:55 -0400 Subject: [PATCH] ERR: LoadCache needed to return a value. --- Source/cmCacheManager.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmCacheManager.cxx b/Source/cmCacheManager.cxx index cbc72efcc4..818f260476 100644 --- a/Source/cmCacheManager.cxx +++ b/Source/cmCacheManager.cxx @@ -90,7 +90,7 @@ bool cmCacheManager::LoadCache(cmMakefile* mf) bool cmCacheManager::LoadCache(const char* path) { - this->LoadCache(path,true); + return this->LoadCache(path,true); } bool cmCacheManager::LoadCache(const char* path, bool internal)