mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-03 11:23:58 +00:00
Fix inconsistent use of override warnings.
llvm-svn: 245375
This commit is contained in:
parent
4cfa086df2
commit
7b1c497862
@ -62,11 +62,11 @@ public:
|
||||
}
|
||||
|
||||
protected:
|
||||
virtual bool
|
||||
UpdateValue ();
|
||||
bool
|
||||
UpdateValue () override;
|
||||
|
||||
virtual CompilerType
|
||||
GetClangTypeImpl ();
|
||||
CompilerType
|
||||
GetClangTypeImpl () override;
|
||||
|
||||
CompilerType m_cast_type;
|
||||
|
||||
|
@ -44,21 +44,21 @@ public:
|
||||
return ValueObjectCast::GetClangType();
|
||||
}
|
||||
|
||||
virtual lldb::ValueObjectSP
|
||||
lldb::ValueObjectSP
|
||||
GetSyntheticChildAtOffset(uint32_t offset,
|
||||
const CompilerType& type,
|
||||
bool can_create);
|
||||
bool can_create) override;
|
||||
|
||||
virtual lldb::ValueObjectSP
|
||||
AddressOf (Error &error);
|
||||
lldb::ValueObjectSP
|
||||
AddressOf (Error &error) override;
|
||||
|
||||
virtual size_t
|
||||
size_t
|
||||
GetPointeeData (DataExtractor& data,
|
||||
uint32_t item_idx = 0,
|
||||
uint32_t item_count = 1);
|
||||
uint32_t item_count = 1) override;
|
||||
|
||||
virtual lldb::ValueObjectSP
|
||||
Cast (const CompilerType &clang_ast_type);
|
||||
lldb::ValueObjectSP
|
||||
Cast (const CompilerType &clang_ast_type) override;
|
||||
|
||||
protected:
|
||||
ValueObjectConstResultImpl m_impl;
|
||||
|
@ -51,19 +51,19 @@ public:
|
||||
return ValueObjectChild::GetClangType();
|
||||
}
|
||||
|
||||
virtual lldb::ValueObjectSP
|
||||
GetSyntheticChildAtOffset(uint32_t offset, const CompilerType& type, bool can_create);
|
||||
lldb::ValueObjectSP
|
||||
GetSyntheticChildAtOffset(uint32_t offset, const CompilerType& type, bool can_create) override;
|
||||
|
||||
virtual lldb::ValueObjectSP
|
||||
AddressOf (Error &error);
|
||||
lldb::ValueObjectSP
|
||||
AddressOf (Error &error) override;
|
||||
|
||||
virtual size_t
|
||||
size_t
|
||||
GetPointeeData (DataExtractor& data,
|
||||
uint32_t item_idx = 0,
|
||||
uint32_t item_count = 1);
|
||||
uint32_t item_count = 1) override;
|
||||
|
||||
virtual lldb::ValueObjectSP
|
||||
Cast (const CompilerType &clang_ast_type);
|
||||
lldb::ValueObjectSP
|
||||
Cast (const CompilerType &clang_ast_type) override;
|
||||
|
||||
protected:
|
||||
ValueObjectConstResultImpl m_impl;
|
||||
|
Loading…
Reference in New Issue
Block a user