* Fix MSVC build.

svn path=/trunk/; revision=61452
This commit is contained in:
Amine Khaldi 2013-12-27 22:58:57 +00:00
parent 1a41980788
commit 41db8a3768

View file

@ -1,6 +1,7 @@
#pragma once #pragma once
#ifndef RC_INVOKED
#ifdef __MINGW32__ #ifdef __MINGW32__
# include "mingw32/intrin.h" # include "mingw32/intrin.h"
#elif defined(_MSC_VER) #elif defined(_MSC_VER)
@ -8,3 +9,4 @@
#else #else
# error Please implement intrinsics for your target compiler # error Please implement intrinsics for your target compiler
#endif #endif
#endif