Changed Allocate to use size_t instead of unsigned.
authorMon P Wang <wangmp@apple.com>
Tue, 10 Mar 2009 23:48:49 +0000 (23:48 +0000)
committerMon P Wang <wangmp@apple.com>
Tue, 10 Mar 2009 23:48:49 +0000 (23:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66602 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/Allocator.h

index 4a04ccc382e1b05c13694c274b213b7ed78a4e17..c0414f970a29533c80bebcbdddc1656594406df8 100644 (file)
@@ -75,9 +75,9 @@ public:
   /// Allocate space for a specific count of elements and with a specified
   /// alignment.
   template <typename T>
-  T *Allocate(size_t Num, unsigned Alignment) {
+  T *Allocate(size_t Num, size_t Alignment) {
     // Round EltSize up to the specified alignment.
-    unsigned EltSize = (sizeof(T)+Alignment-1)&(-Alignment);
+    size_t EltSize = (sizeof(T)+Alignment-1)&(-Alignment);
     return static_cast<T*>(Allocate(Num * EltSize, Alignment));
   }