[llvm] r211351 - Attempting to fix the 64 bit bots.
Yaron Keren
yaron.keren at gmail.com
Fri Jun 20 03:52:57 PDT 2014
Author: yrnkrn
Date: Fri Jun 20 05:52:57 2014
New Revision: 211351
URL: http://llvm.org/viewvc/llvm-project?rev=211351&view=rev
Log:
Attempting to fix the 64 bit bots.
Modified:
llvm/trunk/include/llvm/ADT/BitVector.h
Modified: llvm/trunk/include/llvm/ADT/BitVector.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/BitVector.h?rev=211351&r1=211350&r2=211351&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/BitVector.h (original)
+++ llvm/trunk/include/llvm/ADT/BitVector.h Fri Jun 20 05:52:57 2014
@@ -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;
More information about the llvm-commits
mailing list