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 | 913e1b4bddb9674a3c03e6726579217ede134775 (patch) | |
tree | 5cee46fb93e359b714b11463fd1c902034c13480 | |
parent | 67769e5efa23bd46695e1397c730da096ea08bb8 (diff) |
Dump the old-fashioned C-style <ctype.h> in favor of new `C++'-style <cctype>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15025 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/Support/StringExtras.h | 2 | ||||
-rw-r--r-- | include/llvm/ADT/StringExtras.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/Support/StringExtras.h b/include/Support/StringExtras.h index 51df4f19f6..ad7527b469 100644 --- a/include/Support/StringExtras.h +++ b/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 { diff --git a/include/llvm/ADT/StringExtras.h b/include/llvm/ADT/StringExtras.h index 51df4f19f6..ad7527b469 100644 --- a/include/llvm/ADT/StringExtras.h +++ b/include/llvm/ADT/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 { |