I'm trying to declare a queue in c++:
#include <queue>
......
......
queue<Process> *readyQueue = new queue<Process>;
.......
But i keep getting this error
'queue' was not declared in this scope
What am I missing? I, of course, created the Process struct, so the problem isn't there. What's the issue?