I'm trying to declare a two-dimensional array in my class like so:
#pragma once
class Matrix
{
float elements[][];
};
Except this isn't valid. If I get rid of the last two square brackets, it does work though. What do I need to change to be able to declare a two-dimensional array without initializing it?