Hi All,
On migrating a VC++ 6.0 developed code to Visual studio 2008, I got this warning in the line below in my code.
constintconstCImportContext::PACKETSIZE =4096;
I know how to fix for pointer
staticconstintconst* PACKETSIZE;// C4114staticconstint*const PACKETSIZE;// Correct
But my question is how to fix this warning, if its like the one below(without pointer),
staticconstintconst PACKETSIZE;