mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-01-18 14:25:38 +00:00
Merge pull request #2174 from CookiePLMonster/vs2019-workaround
Common/DimensionalArray: Re-revert the workaround
This commit is contained in:
commit
3e792651d4
|
@ -29,8 +29,8 @@ namespace detail {
|
|||
template<typename T, std::size_t rank, std::size_t... sizes>
|
||||
struct DimensionalArrayExplicitRank;
|
||||
|
||||
// Workaround for MSVC
|
||||
#if defined(_MSC_VER)
|
||||
// Workaround for VS2017 & VS 16.9.x
|
||||
#if defined(_MSC_VER) && (_MSC_VER < 1920 || _MSC_VER == 1928)
|
||||
|
||||
template<std::size_t rank, std::size_t... sizes>
|
||||
struct GetRankSize
|
||||
|
|
Loading…
Reference in a new issue