I am getting the errors C4430: missing type specifier - int assumed. Note: C++ does not support default-int C2143: syntax error : missing ';' before '<' C2238: C2238: unexpected token(s) preceding ';' on the following line.
typedef STD_::reverse_bidirectional_iterator<iterator, DataObj>; reverse_iterator;
What do I need to do to get rid of these errors? This is being done in Visual Studio 2012 on Windows 8.
;
mentioned in the answers below is a red herring - it doesn't actually exist in this header and was a typo by the OP.) – aldo