diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-07-20 02:18:25 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-07-20 02:18:25 +0000 |
commit | 9bd41d54c5945505ab38d6c6927c543cdc38e23b (patch) | |
tree | fa40de2f4b6786eb9df64dd01aba3a995943e15c /llvm/include/Support/StringExtras.h | |
parent | 44d0b9502a0ba0925e6680ff414ba8b97c60a6b7 (diff) | |
download | bcm5719-llvm-9bd41d54c5945505ab38d6c6927c543cdc38e23b.tar.gz bcm5719-llvm-9bd41d54c5945505ab38d6c6927c543cdc38e23b.zip |
Dump the old-fashioned C-style <ctype.h> in favor of new `C++'-style <cctype>
llvm-svn: 15025
Diffstat (limited to 'llvm/include/Support/StringExtras.h')
-rw-r--r-- | llvm/include/Support/StringExtras.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/Support/StringExtras.h b/llvm/include/Support/StringExtras.h index 51df4f19f6c..ad7527b4696 100644 --- a/llvm/include/Support/StringExtras.h +++ b/llvm/include/Support/StringExtras.h @@ -15,8 +15,8 @@ #define SUPPORT_STRINGEXTRAS_H #include "Support/DataTypes.h" +#include <cctype> #include <string> -#include <ctype.h> #include <stdio.h> namespace llvm { |