| commit | e3ba15c794839abe076e3e2bdf6c626396a19d4d | [log] [tgz] |
|---|---|---|
| author | Will Dietz <wdietz2@illinois.edu> | Sat Oct 12 00:55:57 2013 +0000 |
| committer | Will Dietz <wdietz2@illinois.edu> | Sat Oct 12 00:55:57 2013 +0000 |
| tree | 30db2897925bb824e46951d059c175686c112543 | |
| parent | 87b110ac24063a7a48a9d1273e6db596baab78a0 [diff] [blame] |
Add missing #include's to cctype when using isdigit/alpha/etc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192519 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/examples/Kaleidoscope/Chapter3/toy.cpp b/examples/Kaleidoscope/Chapter3/toy.cpp index 48cfbe6..0fb64e3 100644 --- a/examples/Kaleidoscope/Chapter3/toy.cpp +++ b/examples/Kaleidoscope/Chapter3/toy.cpp
@@ -3,6 +3,7 @@ #include "llvm/IR/IRBuilder.h" #include "llvm/IR/LLVMContext.h" #include "llvm/IR/Module.h" +#include <cctype> #include <cstdio> #include <map> #include <string>