[llvm-commits] [llvm] r89359 - /llvm/trunk/include/llvm/ADT/STLExtras.h
Benjamin Kramer
benny.kra at googlemail.com
Thu Nov 19 08:08:04 PST 2009
Author: d0k
Date: Thu Nov 19 10:08:04 2009
New Revision: 89359
URL: http://llvm.org/viewvc/llvm-project?rev=89359&view=rev
Log:
cstdlib is not automatically included with StringRef anymore.
Modified:
llvm/trunk/include/llvm/ADT/STLExtras.h
Modified: llvm/trunk/include/llvm/ADT/STLExtras.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/STLExtras.h?rev=89359&r1=89358&r2=89359&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/STLExtras.h (original)
+++ llvm/trunk/include/llvm/ADT/STLExtras.h Thu Nov 19 10:08:04 2009
@@ -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
More information about the llvm-commits
mailing list