diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2010-09-22 16:40:43 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2010-09-22 16:46:15 (GMT) |
commit | c6e7fabc0f3563a258b8b3e10757e1916d680db0 (patch) | |
tree | 76ae6ba820dfdb7771ae304e2e630db4c83fcb6a /Source/cmMakefile.h | |
parent | 5e41ba8e4a25bec2b5d7c175f80a1ace0999a8ff (diff) | |
download | CMake-c6e7fabc0f3563a258b8b3e10757e1916d680db0.zip CMake-c6e7fabc0f3563a258b8b3e10757e1916d680db0.tar.gz CMake-c6e7fabc0f3563a258b8b3e10757e1916d680db0.tar.bz2 |
Factor out the checks for unused variables
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 9d9606d..240a9cf 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -61,6 +61,8 @@ public: unsigned int GetCacheMajorVersion(); unsigned int GetCacheMinorVersion(); + /* Check for unused variables in this scope */ + void CheckForUnusedVariables() const; /* Mark a variable as used */ void MarkVariableAsUsed(const char* var); /* return true if a variable has been initialized */ |