mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-03 09:21:02 +00:00
Remove unused parameter. Some clients might use -Werror when compiling and
cause drama. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51980 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
bc5786ba47
commit
12c846f5d2
@ -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];
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user