I'm fairly new to C++, so I'm not sure what I'm doing wrong.
This is my construct:
Struct
template<size_t N> struct Offsets
{
static const int length = N;
DWORD offsets[N];
};
And the property:
template <size_t N>
std::map<std::string, std::map<DWORD, Offsets<N>>> pointers;
This results in a
Compiler Error C1001.
Whats wrong with that?