Skip to content

Commit

Permalink
scope 64-bit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
yebblies committed Dec 6, 2013
1 parent 05e8c21 commit 2c791a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scope.h
Expand Up @@ -94,7 +94,7 @@ struct Scope

unsigned callSuper; // primitive flow analysis for constructors
unsigned *fieldinit;
unsigned fieldinit_dim;
size_t fieldinit_dim;

structalign_t structalign; // alignment for struct members
LINK linkage; // linkage for external functions
Expand All @@ -110,7 +110,7 @@ struct Scope
Expressions *userAttributes; // user defined attributes

DocComment *lastdc; // documentation comment for last symbol at this scope
unsigned lastoffset; // offset in docbuf of where to insert next dec
size_t lastoffset; // offset in docbuf of where to insert next dec
OutBuffer *docbuf; // buffer for documentation output

static Scope *freelist;
Expand Down

0 comments on commit 2c791a9

Please sign in to comment.