mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-28 14:36:34 +00:00
Removed unused parameters.
llvm-svn: 54262
This commit is contained in:
parent
c1ae4b8c08
commit
5aaf075b29
@ -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