I am trying to #include in my C++ code and when I go to compile my code I get the error of:
#include
fatal error LNK1104: cannot open fi
Simple solution from the python bug tracker:
#ifdef _DEBUG #undef _DEBUG #include #define _DEBUG #else #include #endif