Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Unified Diff: include/core/SkMath.h

Issue 1777213003: Remove version checks for _MSC_VER < 1800 (msvs2013). (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | include/gpu/GrConfig.h » ('j') | src/core/SkBitmapProcState_matrixProcs.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/core/SkMath.h
diff --git a/include/core/SkMath.h b/include/core/SkMath.h
index e5069592d003b30d640bbd5eae9162ecbea16f64..abb685f6daa36b26b102894305e4d012587ca2b3 100644
--- a/include/core/SkMath.h
+++ b/include/core/SkMath.h
@@ -72,7 +72,7 @@ int32_t SkSqrtBits(int32_t value, int bitBias);
int SkCLZ_portable(uint32_t);
#ifndef SkCLZ
- #if defined(_MSC_VER) && _MSC_VER >= 1400
+ #if defined(_MSC_VER)
#include <intrin.h>
static inline int SkCLZ(uint32_t mask) {
« no previous file with comments | « no previous file | include/gpu/GrConfig.h » ('j') | src/core/SkBitmapProcState_matrixProcs.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698