sorry deque.h, that error seems the typical thing with non including the headers, the compiler doesn’t find the type so it “thinks” deque is a variable with no type behind…
I’m trying with deque.h and it works, but perhaps in linux is diferent
What arturo said plus make sure your are using the “std” namespace. Also this should be default in OF but in some situations you have to add “using std;” to the file in question. If you are unsure just write “std::deque red;” instead.