Compiler Error C2493
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C2493.
illegal form of __based
A __based expression must be based on a pointer.
The following sample generates C2493:
// C2493.cpp // compile with: /c char mybase; int __based(mybase) ptr; // C2493 // OK char * mybase; int __based(mybase) * ptr;
Show: