I have the following code:
#include <queue>
struct Job
{
};
queue<Job> _jobQueue;
But I get the error:
error: ISO C++ forbids declaration of âqueueâ with no type
How can I make a queue for my struct?
_jobQueuein this fragment.