diff options
author | Brad King <brad.king@kitware.com> | 2016-04-15 17:46:15 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-04-15 17:46:15 (GMT) |
commit | cc684857c2959d7a49c0c390dcf3361804648c0b (patch) | |
tree | 7da468523e52a9e9fb4fe890d770cf39471d82ff /Source/cmPolicies.cxx | |
parent | 52dddefcbbd2a79826fe9cb5b5fe787c6cdfe2a8 (diff) | |
download | CMake-cc684857c2959d7a49c0c390dcf3361804648c0b.zip CMake-cc684857c2959d7a49c0c390dcf3361804648c0b.tar.gz CMake-cc684857c2959d7a49c0c390dcf3361804648c0b.tar.bz2 |
cmPolicies.cxx: Add missing include <ctype.h> for isdigit (#16066)
Diffstat (limited to 'Source/cmPolicies.cxx')
-rw-r--r-- | Source/cmPolicies.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmPolicies.cxx b/Source/cmPolicies.cxx index 3eb19bb..bce69c5 100644 --- a/Source/cmPolicies.cxx +++ b/Source/cmPolicies.cxx @@ -4,6 +4,7 @@ #include "cmVersion.h" #include "cmVersionMacros.h" #include "cmAlgorithms.h" +#include <ctype.h> #include <map> #include <set> #include <queue> |