mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-17 04:24:00 +00:00
Switch all uses of LLVM_OVERRIDE to just use 'override' directly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202621 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -3246,10 +3246,10 @@ error_code BitcodeReader::InitLazyStream() {
|
||||
|
||||
namespace {
|
||||
class BitcodeErrorCategoryType : public _do_message {
|
||||
const char *name() const LLVM_OVERRIDE {
|
||||
const char *name() const override {
|
||||
return "llvm.bitcode";
|
||||
}
|
||||
std::string message(int IE) const LLVM_OVERRIDE {
|
||||
std::string message(int IE) const override {
|
||||
BitcodeReader::ErrorType E = static_cast<BitcodeReader::ErrorType>(IE);
|
||||
switch (E) {
|
||||
case BitcodeReader::BitcodeStreamInvalidSize:
|
||||
|
Reference in New Issue
Block a user