Skip to content

Commit

Permalink
Merge branch 'hotfix/1.0.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslzhu committed Sep 30, 2014
2 parents 26d230a + facba4e commit 50e9fba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/star/entity/entity.d
Original file line number Diff line number Diff line change
Expand Up @@ -917,7 +917,7 @@ private:
}

// Return a unique integer for every component type.
ulong type(C)() inout pure nothrow @safe
size_t type(C)() inout pure nothrow @safe
in
{
assert(hasType!C());
Expand Down Expand Up @@ -1024,7 +1024,7 @@ private:
Object[][] _components;

// A map associating each component class with a unique unsigned integer.
ulong[ClassInfo] _componentTypes;
size_t[ClassInfo] _componentTypes;

// Bitmasks of each entity's components, ordered by entity and then by component bit.
bool[][] _componentMasks;
Expand Down

0 comments on commit 50e9fba

Please sign in to comment.