diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-12-07 15:22:19 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-12-07 15:22:19 (GMT) |
commit | f056de555d93d73f941a60fd4ad009ce6e0e88cf (patch) | |
tree | 55dcdd26e56ca187f832f31e215e67aa04c1f27a /Source/cmTest.cxx | |
parent | 1936242ad4b93323ec9d8f4166b2fc63733eba62 (diff) | |
download | CMake-f056de555d93d73f941a60fd4ad009ce6e0e88cf.zip CMake-f056de555d93d73f941a60fd4ad009ce6e0e88cf.tar.gz CMake-f056de555d93d73f941a60fd4ad009ce6e0e88cf.tar.bz2 |
BUG: fix missing return value
Diffstat (limited to 'Source/cmTest.cxx')
-rw-r--r-- | Source/cmTest.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmTest.cxx b/Source/cmTest.cxx index 42b15aa..47f8792 100644 --- a/Source/cmTest.cxx +++ b/Source/cmTest.cxx @@ -62,6 +62,7 @@ const char *cmTest::GetProperty(const char* prop) const { return this->Makefile->GetProperty(prop,cmProperty::TEST); } + return retVal; } bool cmTest::GetPropertyAsBool(const char* prop) const |