Fix windows build error in type-checking.c. (#4078)
authorJohan Lorensson <lateralusx.github@gmail.com>
Fri, 2 Dec 2016 17:23:04 +0000 (18:23 +0100)
committerAlexander Köplinger <alex.koeplinger@outlook.com>
Fri, 2 Dec 2016 17:23:04 +0000 (18:23 +0100)
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.

mono/mini/type-checking.c

index 1dd0574909101f89d603457eaf265a17ae0cdc83..8d9cf6fe47c3da9a13cdb780f5b64f12ba1c8851 100644 (file)
@@ -3,8 +3,8 @@
 
 #ifndef DISABLE_JIT
 
-#include <mini.h>
-#include <ir-emit.h>
+#include "mini.h"
+#include "ir-emit.h"
 #include <mono/metadata/abi-details.h>