Hi,
I mostly use clang (occasionally also gcc) both on OS X and Linux, and also tried mingw on Windows. I wanted to try msvc on Windows because I find mingw slow, but it seems that with msvc I must be more explicit with my includes. For example, both with clang and gcc this is fine:
#include "myheader.h"
With msvc I have to change it to something like this:
#include "../myheader.h"
Is this a known peculiarity? I tried this on Windows 7 64bit, Qt 5.1.1, MSVC2012.
↧