Quick Q: Why Doesn't C++ Support typeof? -- StackOverflow
Quick A: Ah, but it does...
From StackOverflow:
Why C++ doesn't allow me to use typeof?
I'm using following code with C++11 and getting a error that I'm not allowed to use
typeof
!What is the problem and how to fix this ?
The error :
Error 10 error C2923: 'typeof' is not a valid template type argument for parameter 'C'Here is my code: ...