Skip to content

Commit

Permalink
rename typeid variable to type_id
Browse files Browse the repository at this point in the history
gcc-4.7 and 4.8 reserve typeid
  • Loading branch information
Reini Urban committed Nov 20, 2012
1 parent 98e8238 commit 4f52b8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ops/nqp_dyncall.ops
Expand Up @@ -204,8 +204,8 @@ get_calling_convention(PARROT_INTERP, STRING *name) {

/* Map argument type id to dyncall character id. */
static char
get_signature_char(INTVAL typeid) {
switch (typeid & DYNCALL_ARG_TYPE_MASK) {
get_signature_char(INTVAL type_id) {
switch (type_id & DYNCALL_ARG_TYPE_MASK) {
case DYNCALL_ARG_VOID:
return 'v';
case DYNCALL_ARG_CHAR:
Expand Down

0 comments on commit 4f52b8c

Please sign in to comment.