GPR#165: Fixed small typo it should be _MSC_VER not __MSC_VER

(Bernhard Schommer)

git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@16264 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Gabriel Scherer 2015-07-26 19:28:53 +00:00
parent a1063f29bf
commit f7199a9ee2
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ typedef char * addr;
#ifdef __GNUC__
/* Works only in GCC 2.5 and later */
#define Noreturn __attribute__ ((noreturn))
#elif __MSC_VER >= 1500
#elif _MSC_VER >= 1500
#define Noreturn __declspec(noreturn)
#else
#define Noreturn