From a2da7c5612f1fa26dde508da2a527a4bab381de0 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Thu, 3 Aug 2017 13:34:08 -0700 Subject: Enforce recent VC++ version (2015 or later). Remove ifdef'd code for versions we know will no longer work. Change-Id: I036c80168f846df1b98e9df4972f84655e8418fb Reviewed-on: https://pdfium-review.googlesource.com/10051 Reviewed-by: Lei Zhang Commit-Queue: Tom Sepez --- core/fxge/win32/dwrite_int.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/fxge/win32') diff --git a/core/fxge/win32/dwrite_int.h b/core/fxge/win32/dwrite_int.h index 16be7b7d4f..2d1deb6012 100644 --- a/core/fxge/win32/dwrite_int.h +++ b/core/fxge/win32/dwrite_int.h @@ -12,14 +12,14 @@ #include "core/fxge/fx_dib.h" #ifndef DECLSPEC_UUID -#if (_MSC_VER >= 1100) && defined(__cplusplus) +#if defined(__cplusplus) #define DECLSPEC_UUID(x) __declspec(uuid(x)) #else #define DECLSPEC_UUID(x) #endif #endif #ifndef DECLSPEC_NOVTABLE -#if (_MSC_VER >= 1100) && defined(__cplusplus) +#if defined(__cplusplus) #define DECLSPEC_NOVTABLE __declspec(novtable) #else #define DECLSPEC_NOVTABLE -- cgit v1.2.3