Ticket #113: sal-h-check.patch
| File sal-h-check.patch, 0.7 KB (added by bjoern, 4 years ago) |
|---|
-
compiler.h
old new 18 18 * Microsoft provides two annotations mechanisms. __declspec, which has been 19 19 * around for a while, and Microsoft's standard source code annotation 20 20 * language (SAL), introduced with Visual C++ 8.0. 21 21 * See <http://msdn2.microsoft.com/en-us/library/ms235402(VS.80).aspx>, 22 22 * <http://msdn2.microsoft.com/en-us/library/dabb5z75(VS.80).aspx>. 23 23 */ 24 #if defined(_MSC_VER) && (_MSC_VER > 1 300)24 #if defined(_MSC_VER) && (_MSC_VER > 1500) 25 25 # define PARROT_HAS_SAL 1 26 26 # include <sal.h> 27 27 #else 28 28 # define PARROT_HAS_SAL 0 29 29 #endif 30 30
