diff options
author | Chris Lattner <sabre@nondot.org> | 2005-10-25 17:59:28 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-10-25 17:59:28 +0000 |
commit | 70cfe13f19e91a595808ed6c6ff7e87ff0dccd64 (patch) | |
tree | 6c8031e120bb2a9def0477d832ab45777353b0af /include/llvm/BasicBlock.h | |
parent | 304a564c1f84eaaee8dc218a2eb57443c370e12f (diff) |
Remove some dead argument names which irritates GCC at certain warning levels.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23979 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/BasicBlock.h')
-rw-r--r-- | include/llvm/BasicBlock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/BasicBlock.h b/include/llvm/BasicBlock.h index 30c1fc783e..55ecd4052e 100644 --- a/include/llvm/BasicBlock.h +++ b/include/llvm/BasicBlock.h @@ -139,7 +139,7 @@ public: void print(std::ostream &OS, AssemblyAnnotationWriter *AAW) const; /// Methods for support type inquiry through isa, cast, and dyn_cast: - static inline bool classof(const BasicBlock *BB) { return true; } + static inline bool classof(const BasicBlock *) { return true; } static inline bool classof(const Value *V) { return V->getValueType() == Value::BasicBlockVal; } |