Don't redeclare a pure virtual method.
authorRafael Espindola <rafael.espindola@gmail.com>
Fri, 7 Nov 2014 18:07:04 +0000 (18:07 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Fri, 7 Nov 2014 18:07:04 +0000 (18:07 +0000)
commit3d8a2f07d587ccb83bfe82327b75d9bd6cc48f24
treef866426d798e575729ccbb9dee80017e1d01857d
parent0cb58206b124420140c6d72b2d4aff535cc8be4f
Don't redeclare a pure virtual method.

I.E., there is no value is having

void foo() override = 0;

If it is override it is already present in a base class. Since it is pure,
some other class will have to implement it.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@221537 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/IR/InstrTypes.h
include/llvm/Support/StreamableMemoryObject.h