diff options
author | Francois Pichet <pichet2000@gmail.com> | 2012-03-14 22:36:10 +0000 |
---|---|---|
committer | Francois Pichet <pichet2000@gmail.com> | 2012-03-14 22:36:10 +0000 |
commit | 4ec692317bc38588d01edb7584953c9aca4a9467 (patch) | |
tree | b07e660508c608cd4a53b719ea7c45f3725324ae /lib/Transforms/Instrumentation/FunctionBlackList.cpp | |
parent | b16117c368ad4e6d004ac912549b2c6ed06731a5 (diff) |
Fixes the MSVC build.
Commit r152704 exposed a latent MSVC limitation (aka bug).
Both ilist and and iplist contains the same function:
template<class InIt> void insert(iterator where, InIt first, InIt last) {
for (; first != last; ++first) insert(where, *first);
}
Also ilist inherits from iplist and ilist contains a "using iplist<NodeTy>::insert".
MSVC doesn't know which one to pick and complain with an error.
I think it is safe to delete ilist::insert since it is redundant anyway.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152746 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Instrumentation/FunctionBlackList.cpp')
0 files changed, 0 insertions, 0 deletions