From: Johan Lorensson Date: Fri, 2 Dec 2016 17:23:04 +0000 (+0100) Subject: Fix windows build error in type-checking.c. (#4078) X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=mono.git;a=commitdiff_plain;h=29de090ea696b79a813d9d55bdcb9ec2f10ae667 Fix windows build error in type-checking.c. (#4078) Looks like commit f3bbd799f0a6b809be3278f30a3a16fd7b323ef5 that added type-checking.c to the windows builds broke it since it includes mini.h and ir-emit.h using <> syntax instead of "". All other include of these files uses "" syntax. Fix makes sure the includes in type-checking.c uses "" syntax. --- diff --git a/mono/mini/type-checking.c b/mono/mini/type-checking.c index 1dd05749091..8d9cf6fe47c 100644 --- a/mono/mini/type-checking.c +++ b/mono/mini/type-checking.c @@ -3,8 +3,8 @@ #ifndef DISABLE_JIT -#include -#include +#include "mini.h" +#include "ir-emit.h" #include