For some reason I keep getting
error C3861: '__typeof': identifier not found
when I compile my program!
I'm including the following libraries:
<iostream>
<stdlib>
<stdio>
Any ideas?
thanks
Edit:
More example
User.h
class User{}
main.cpp
void f(User* p)
{
.
.
.
__typeof(p) ...
.
.
.
.
}