mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 10:48:36 +12:00
Workaround for msvc weirdness
This commit is contained in:
parent
e179adc4a0
commit
c51d3b5465
1 changed files with 4 additions and 0 deletions
|
@ -6,7 +6,11 @@ namespace rsx
|
||||||
template <typename Traits, int BlockSize>
|
template <typename Traits, int BlockSize>
|
||||||
class surface_cache_data_map : public ranged_map<typename Traits::surface_storage_type, BlockSize>
|
class surface_cache_data_map : public ranged_map<typename Traits::surface_storage_type, BlockSize>
|
||||||
{
|
{
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
using super = ranged_map<typename Traits::surface_storage_type, BlockSize>;
|
||||||
|
#else
|
||||||
using super = class ranged_map<typename Traits::surface_storage_type, BlockSize>;
|
using super = class ranged_map<typename Traits::surface_storage_type, BlockSize>;
|
||||||
|
#endif
|
||||||
using metadata_t = typename super::block_metadata_t;
|
using metadata_t = typename super::block_metadata_t;
|
||||||
|
|
||||||
const metadata_t& find_head_block(u32 address)
|
const metadata_t& find_head_block(u32 address)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue