Sometimes you HAVE to make small changes in your code for it to compile for both x86 and x64 code. To do that, add the following statements into your code.
#ifdef _M_X64
// 64bit code here
#else
// 32bit code here
#endif
Mainly notes to future-Twig (and for anyone else who may find them useful)
If you've found one or more of my blog posts helpful, why not say thanks by buying me a coffee or beer?
Sometimes you HAVE to make small changes in your code for it to compile for both x86 and x64 code. To do that, add the following statements into your code.
#ifdef _M_X64
// 64bit code here
#else
// 32bit code here
#endif