Author: sagamusix
Date: Sat Mar 23 20:40:09 2024
New Revision: 20434
URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=20434
Log:
[Var] ancient: Apply commit 35e1f2883b246de860dc3fe7dc2de2a75a840b90 from https://github.com/temisu/ancient/pull/67 to fix VS2107 builds.
Modified:
trunk/OpenMPT/include/ancient/src/FrequencyTree.hpp
Modified: trunk/OpenMPT/include/ancient/src/FrequencyTree.hpp
==============================================================================
--- trunk/OpenMPT/include/ancient/src/FrequencyTree.hpp Sat Mar 23 17:38:20 2024 (r20433)
+++ trunk/OpenMPT/include/ancient/src/FrequencyTree.hpp Sat Mar 23 20:40:09 2024 (r20434)
@@ -192,7 +192,7 @@
static constexpr std::array<uint32_t,_levels> _levelOffsets{makeArray(makeLevelOffsetSequence(std::make_integer_sequence<uint32_t,levels()>{}))};
static constexpr std::array<uint32_t,_levels> _levelSizes{makeArray(makeLevelSizeSequence(std::make_integer_sequence<uint32_t,levels()>{}))};
- std::array<T,size()> _tree;
+ std::array<T,_size> _tree;
};
}
|