Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[cairo.h] Be defensive when checking for _MSC_VER
Since cairo.h is a public header file, we need to be careful so that it can be compiled by random compilers and even users specifying "-Werror -Wundef" (mentioning no names, Company). So replace the bare (and legal) #if _MSC_VER with #if defined (_MSC_VER) just in case.
- Loading branch information