So I have a map myMap that I'm trying to statically initialize (has to be done this way).
I'm doing the following:
myMap =
{
{415, {1, 52356, 2}},
{256, {356, 23, 6}},
//...etc
};
However I'm getting the following error: "Array initializer must be an initializer list."
What is wrong with the syntax I have above?