mesa: Remove support for MSVC2008.
authorJose Fonseca <jfonseca@vmware.com>
Fri, 12 Feb 2016 10:29:22 +0000 (10:29 +0000)
committerJose Fonseca <jfonseca@vmware.com>
Fri, 12 Feb 2016 10:31:15 +0000 (10:31 +0000)
Spotted by Emil Velikov.

Trivial.

src/mesa/main/imports.h

index ad7af5c1d8cba5103676b82a70de26ea05a7e28a..d96d666e15fdc9ce9fc266427435b286ca61a91c 100644 (file)
@@ -83,9 +83,6 @@ typedef union { GLfloat f; GLint i; GLuint u; } fi_type;
 
 
 #if defined(_MSC_VER)
-#if _MSC_VER < 1800  /* Not req'd on VS2013 and above */
-#define strtoll(p, e, b) _strtoi64(p, e, b)
-#endif /* _MSC_VER < 1800 */
 #define strcasecmp(s1, s2) _stricmp(s1, s2)
 #endif
 /*@}*/