aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sfnt
diff options
context:
space:
mode:
authorGravatar bungeman <bungeman@google.com>2016-03-10 11:14:40 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-03-10 11:14:40 -0800
commitd7dc76f7e99309cbd09a5420c22e55b951067deb (patch)
treeca291b2cdfd909c38bdc9befe017e959ec0cef2b /src/sfnt
parentcf371bb41b4a0591347a076ce7d83336d4bbc6fb (diff)
Remove version checks for _MSC_VER < 1800 (msvs2013).
We already actively do not support older versions of the vc++ compiler and runtime, so don't check for them anymore. TBR=reed No API changes. GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1777213003 Review URL: https://codereview.chromium.org/1777213003
Diffstat (limited to 'src/sfnt')
-rw-r--r--src/sfnt/SkTypedEnum.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sfnt/SkTypedEnum.h b/src/sfnt/SkTypedEnum.h
index 73d7314885..19d57acf0a 100644
--- a/src/sfnt/SkTypedEnum.h
+++ b/src/sfnt/SkTypedEnum.h
@@ -19,7 +19,7 @@
#endif
//Detect if typed enums are supported.
-#if defined(_MSC_VER) && _MSC_VER >= 1400
+#if defined(_MSC_VER)
#define SK_TYPED_ENUMS
#elif defined(__clang__) && __has_extension(cxx_strong_enums)