sstream.tcc error: expected unqualified-id before '(' token
代碼:
/sstream.tcc:116: error: expected unqualified-id before '(' token
/sstream.tcc:118: error: expected unqualified-id before '(' token
It usually happened when your toolchain has default max/min
pre-defined, especially when you need to do some cross-platform-compiling.
Just try to find which C++/CPP file include <sstream>
and
place un-define related macro before it.
e.g. workaround
代碼: