summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h
index e95ac7f8b7..17c06bf48d 100644
--- a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h
+++ b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h
@@ -546,17 +546,6 @@
# define WTF_CPU_BIG_ENDIAN 1
# endif
-#if (_WIN32_WCE >= 0x700)
- // Windows Embedded Compact 7 is missing std::ptrdiff_t type and std::min and std::max.
- // They are defined here to minimize the changes to JSCore
- namespace std {
- typedef ::ptrdiff_t ptrdiff_t;
- template <class T> inline T max(const T& a, const T& b) { return (a > b) ? a : b; }
- template <class T> inline T min(const T& a, const T& b) { return (a < b) ? a : b; }
- }
-#endif
-
-// For localtime in Windows CE
# include <ce_time.h>
#endif