Skip to content

Commit

Permalink
feat: completed the parent class of MultidimensionalArray.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lovelylavender4 committed Jul 13, 2024
1 parent 1ed6047 commit 446a1e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mc/deps/core/utility/MultidimensionalArray.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace Util {

template <typename T0, int T1, int T2, int T3>
class MultidimensionalArray {
class MultidimensionalArray : public std::array<T0, T1 * T2 * T3> {
public:
// prevent constructor by default
MultidimensionalArray& operator=(MultidimensionalArray const&);
Expand Down

0 comments on commit 446a1e0

Please sign in to comment.