mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 03:08:36 +12:00
Add/fix warning -Wignored-qualifiers (GCC/clang)
Fix simple_array::const_iterator as a part of it.
This commit is contained in:
parent
5bdd1cf837
commit
53af2dbb3f
11 changed files with 25 additions and 23 deletions
|
@ -3037,12 +3037,12 @@ namespace rsx
|
|||
}
|
||||
}
|
||||
|
||||
virtual const u32 get_unreleased_textures_count() const
|
||||
virtual u32 get_unreleased_textures_count() const
|
||||
{
|
||||
return m_storage.m_unreleased_texture_objects;
|
||||
}
|
||||
|
||||
const u64 get_texture_memory_in_use() const
|
||||
u64 get_texture_memory_in_use() const
|
||||
{
|
||||
return m_storage.m_texture_memory_in_use;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue