diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-11-19 16:08:04 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2009-11-19 16:08:04 +0000 |
commit | 90c583fff0535d441717425ad4428d85eb2a00a9 (patch) | |
tree | 734ea0810457812310c5b42ba56b6070cc565452 | |
parent | 49123250ae32a17f397b332871b715a66cc26d69 (diff) |
cstdlib is not automatically included with StringRef anymore.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89359 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/ADT/STLExtras.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/ADT/STLExtras.h b/include/llvm/ADT/STLExtras.h index a8b613307d..32cf4590e9 100644 --- a/include/llvm/ADT/STLExtras.h +++ b/include/llvm/ADT/STLExtras.h @@ -18,6 +18,7 @@ #define LLVM_ADT_STLEXTRAS_H #include <cstddef> // for std::size_t +#include <cstdlib> // for qsort #include <functional> #include <iterator> #include <utility> // for std::pair |