Skip to content

Commit

Permalink
nim: changed *intptr to int.
Browse files Browse the repository at this point in the history
closes: Dav1dde#147
  • Loading branch information
krux02 authored and Dav1dde committed May 27, 2018
1 parent eb3e0dd commit 2c6e097
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions glad/lang/nim/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ def _gl_types(gen, f):
'GLint': 'int32',
'GLint64': 'int64',
'GLint64EXT': 'int64',
'GLintptr': 'int32',
'GLintptrARB': 'int32',
'GLintptr': 'int',
'GLintptrARB': 'int',
'GLshort': 'int16',
'GLsizei': 'int32',
'GLsizeiptr': 'int32',
Expand Down

0 comments on commit 2c6e097

Please sign in to comment.