From: Yaron Keren Date: Fri, 20 Jun 2014 10:52:57 +0000 (+0000) Subject: Attempting to fix the 64 bit bots. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7d5bff0d5a236a5e3a6f6a159d2a6607fb76368a;p=oota-llvm.git Attempting to fix the 64 bit bots. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211351 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/BitVector.h b/include/llvm/ADT/BitVector.h index 2fa181734bb..34e2284311b 100644 --- a/include/llvm/ADT/BitVector.h +++ b/include/llvm/ADT/BitVector.h @@ -34,7 +34,7 @@ class BitVector { unsigned Capacity; // Size of allocated memory in BitWord. public: - typedef size_t size_type; + typedef unsigned size_type; // Encapsulation of a single bit. class reference { friend class BitVector;