Add a value_type typedef to SmallVector, to make it more compatible with STL adapters.
[oota-llvm.git] / include / llvm / DerivedTypes.h
index 4537400618b526a27fb1d0230c1d2f091bd4c73a..04a73fe8cf2e74c9a977f61713a29971cf4a1c37 100644 (file)
@@ -292,7 +292,7 @@ public:
   inline const Type *getElementType() const { return ContainedTys[0]; }
 
   virtual bool indexValid(const Value *V) const;
-  virtual bool indexValid(unsigned Idx) const {
+  virtual bool indexValid(unsigned) const {
     return true;
   }
 
@@ -302,7 +302,7 @@ public:
   virtual const Type *getTypeAtIndex(const Value *) const {
     return ContainedTys[0];
   }
-  virtual const Type *getTypeAtIndex(unsigned Idx) const {
+  virtual const Type *getTypeAtIndex(unsigned) const {
     return ContainedTys[0];
   }