I'm noob but as i know it doesnt matter what's data type container contains. So here is what i'm trying to do:
std::deque<list<U32> > ReqLis; And result of it is next:
error: ISO C++ forbids declaration of 'deque' with no type error: invalid use of '::' expected ';' before '<' token But when instead of it i try to do this:
std::list<list<U32> > ReqList; That's ok..................
Question is am i such great noob or is it compiler fail? I'm using gcc/g++
#include <deque>?U32, but betterstd::uint32_t.