mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-22 10:42:36 +01:00
Make -Woverloaded-virtual an error
Had to devirtualize some functions.
This commit is contained in:
parent
035ab590ec
commit
0bcece4585
@ -23,7 +23,7 @@ protected:
|
||||
const std::add_pointer_t<const cpu_thread> m_cpu;
|
||||
u32 m_op = 0;
|
||||
|
||||
virtual void Write(const std::string& value)
|
||||
void Write(const std::string& value)
|
||||
{
|
||||
switch (m_mode)
|
||||
{
|
||||
|
@ -440,13 +440,13 @@ namespace rsx
|
||||
is_compiled = false;
|
||||
}
|
||||
|
||||
virtual void set_text(const std::u32string& text)
|
||||
void set_text(const std::u32string& text)
|
||||
{
|
||||
this->text = text;
|
||||
is_compiled = false;
|
||||
}
|
||||
|
||||
virtual void set_text(localized_string_id id)
|
||||
void set_text(localized_string_id id)
|
||||
{
|
||||
set_text(get_localized_u32string(id));
|
||||
}
|
||||
|
@ -116,7 +116,7 @@ namespace vk
|
||||
return false;
|
||||
}
|
||||
|
||||
virtual bool init(u32 w, u32 h)
|
||||
bool init(u32 w, u32 h)
|
||||
{
|
||||
m_width = w;
|
||||
m_height = h;
|
||||
|
@ -31,6 +31,7 @@ else()
|
||||
add_compile_options(-Werror=sign-compare)
|
||||
add_compile_options(-Werror=reorder)
|
||||
add_compile_options(-Werror=return-type)
|
||||
add_compile_options(-Werror=overloaded-virtual)
|
||||
|
||||
#TODO Clean the code so these are removed
|
||||
add_compile_options(-Wno-attributes)
|
||||
|
Loading…
Reference in New Issue
Block a user