summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-05-23 19:27:41 (GMT)
committerBrad King <brad.king@kitware.com>2006-05-23 19:27:41 (GMT)
commit3db44b697353cf28a16cea7f9a0cea9187f9b5b5 (patch)
treec56323ed5000f88c7f8b9fb8fd2be7192c1e9f2c /Source
parent52a8004b9844cf88d4448d1c718dda00bf23a70b (diff)
downloadCMake-3db44b697353cf28a16cea7f9a0cea9187f9b5b5.zip
CMake-3db44b697353cf28a16cea7f9a0cea9187f9b5b5.tar.gz
CMake-3db44b697353cf28a16cea7f9a0cea9187f9b5b5.tar.bz2
COMP: Added missing include for isspace.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmLocalVisualStudio7Generator.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx
index 7c2d720..17c2704 100644
--- a/Source/cmLocalVisualStudio7Generator.cxx
+++ b/Source/cmLocalVisualStudio7Generator.cxx
@@ -22,6 +22,8 @@
#include "cmCacheManager.h"
#include "cmake.h"
+#include <ctype.h> // for isspace
+
cmLocalVisualStudio7Generator::cmLocalVisualStudio7Generator()
{
this->Version = 7;