mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-01 12:08:12 +00:00
Workaround for msvc weirdness
This commit is contained in:
parent
e179adc4a0
commit
c51d3b5465
@ -6,7 +6,11 @@ namespace rsx
|
||||
template <typename Traits, int 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>;
|
||||
#endif
|
||||
using metadata_t = typename super::block_metadata_t;
|
||||
|
||||
const metadata_t& find_head_block(u32 address)
|
||||
|
Loading…
Reference in New Issue
Block a user