diff options
author | Tom Sepez <tsepez@chromium.org> | 2017-08-03 13:34:08 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-08-04 16:42:35 +0000 |
commit | a2da7c5612f1fa26dde508da2a527a4bab381de0 (patch) | |
tree | 84e7343808b5818305e91e4b2bf80d7764dcddef /core/fxge/win32 | |
parent | 1952d17428ba5d509dc21cd8d49abba1bd2d2c5d (diff) | |
download | pdfium-a2da7c5612f1fa26dde508da2a527a4bab381de0.tar.xz |
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 <thestig@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fxge/win32')
-rw-r--r-- | core/fxge/win32/dwrite_int.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 |