diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2010-10-08 17:49:39 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2010-10-08 17:49:39 (GMT) |
commit | 3f1121f72260789dd61ce947e208aa182341859e (patch) | |
tree | 193340683d69fefbcd7ebcc1be09e4a6ef201ede /Source/cmMakefile.cxx | |
parent | 2507f937bd3f287e1905ef25ce2c37e616037671 (diff) | |
download | CMake-3f1121f72260789dd61ce947e208aa182341859e.zip CMake-3f1121f72260789dd61ce947e208aa182341859e.tar.gz CMake-3f1121f72260789dd61ce947e208aa182341859e.tar.bz2 |
Use a long int since Line is a long as well
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 15c5370..45599d7 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -1779,7 +1779,7 @@ void cmMakefile::CheckForUnused(const char* reason, const char* name) const if (this->WarnUnused && !this->VariableUsed(name)) { cmStdString path; - int line; + long line; if (this->CallStack.size()) { const cmListFileContext* file = this->CallStack.back().Context; |