Skip to content

Commit

Permalink
Merge pull request #1644 from Bradan/development
Browse files Browse the repository at this point in the history
Fixed compile errors on linux (obvious programming faults).
  • Loading branch information
Areloch authored Jun 20, 2016
2 parents 80dcf3e + afcb731 commit 88f0318
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Engine/lib/collada/src/dae/daeMetaGroup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ daeElement *daeMetaGroup::placeElement( daeElement *parent, daeElement *child, d
(void)offset;
daeString nm = child->getElementName();
if ( findChild( nm ) == NULL ) {
return false;
return NULL;
}
daeElementRef el;

Expand Down
5 changes: 1 addition & 4 deletions Engine/lib/convexDecomp/NvHashMap.h
Original file line number Diff line number Diff line change
Expand Up @@ -692,9 +692,6 @@ namespace CONVEX_DECOMPOSITION
mCapacity = t.mCapacity;

copy(mData,t.mData,t.mSize);
mSize = t.mSize;

return;
}
else
{
Expand Down Expand Up @@ -1521,7 +1518,7 @@ namespace CONVEX_DECOMPOSITION
NX_INLINE const Entry *find(const Key &k) const
{
if(!mHash.size())
return false;
return NULL;

NxU32 h = hash(k);
NxU32 index = mHash[h];
Expand Down

0 comments on commit 88f0318

Please sign in to comment.