mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-26 22:26:16 +00:00
Removed unused parameters.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54262 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3b4c45203e
commit
eb4ab60bed
@ -80,11 +80,11 @@ struct ilist_default_traits : ilist_nextprev_traits<NodeTy>,
|
||||
static NodeTy *createNode(const NodeTy &V) { return new NodeTy(V); }
|
||||
static void deleteNode(NodeTy *V) { delete V; }
|
||||
|
||||
void addNodeToList(NodeTy *NTy) {}
|
||||
void removeNodeFromList(NodeTy *NTy) {}
|
||||
void transferNodesFromList(ilist_default_traits &SrcTraits,
|
||||
ilist_iterator<NodeTy> first,
|
||||
ilist_iterator<NodeTy> last) {}
|
||||
void addNodeToList(NodeTy *) {}
|
||||
void removeNodeFromList(NodeTy *) {}
|
||||
void transferNodesFromList(ilist_default_traits & /*SrcTraits*/,
|
||||
ilist_iterator<NodeTy> /*first*/,
|
||||
ilist_iterator<NodeTy> /*last*/) {}
|
||||
};
|
||||
|
||||
// Template traits for intrusive list. By specializing this template class, you
|
||||
|
Loading…
Reference in New Issue
Block a user