diff options
-rw-r--r-- | src/mapi/new/genCommon.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mapi/new/genCommon.py b/src/mapi/new/genCommon.py index f4eb1728e952..a9fdbcdc9eec 100644 --- a/src/mapi/new/genCommon.py +++ b/src/mapi/new/genCommon.py @@ -226,7 +226,6 @@ def _fixupTypeName(typeName): # Remove the vendor suffixes from types that have a suffix-less version. rv = re.sub(r"\b(GLhalf|GLintptr|GLsizeiptr|GLint64|GLuint64)(?:ARB|EXT|NV|ATI)\b", r"\1", rv) - rv = re.sub(r"\bGLvoid\b", "void", rv) rv = re.sub(r"\bGLDEBUGPROCKHR\b", "GLDEBUGPROC", rv) # Clear out any leading and trailing whitespace. |