mirror of
https://github.com/WerWolv/ImHex-Patterns.git
synced 2026-03-28 15:57:02 -05:00
9 lines
114 B
Rust
9 lines
114 B
Rust
#pragma once
|
|
|
|
namespace std {
|
|
|
|
struct Array<T, auto Size> {
|
|
T data[Size] [[inline]];
|
|
};
|
|
|
|
} |