From: Brian Paul Date: Tue, 24 Feb 2015 22:05:47 +0000 (-0700) Subject: mesa: remove unused isblank() function X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=612143b2d0b7ec84d43049908f454d79bebeeb5f;p=mesa.git mesa: remove unused isblank() function Reviewed-by: Matt Turner --- diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 7fb9381e546..a6e4d9eafb6 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -92,7 +92,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 */ -static inline int isblank(int ch) { return ch == ' ' || ch == '\t'; } #define strtoll(p, e, b) _strtoi64(p, e, b) #endif /* _MSC_VER < 1800 */ #define strcasecmp(s1, s2) _stricmp(s1, s2)