Compiler Error 441

You are using a class template without specifying the type.

For instance, when using the vector class, you must specify the type of the elements of the vector using <int>.

vector<int> myvector;

All wikipages