Skip to content

Commit

Permalink
xrCore/fbox.h: Fixed compilation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaffeine committed Nov 6, 2015
1 parent ced76e0 commit 5c88705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrCore/_fbox.h
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,6 @@ typedef _box3<double> Dbox;
typedef _box3<double> Dbox3;

template <class T>
BOOL _valid(const _box3<T>& c) { return _valid(min) && _valid(max); }
BOOL _valid(const _box3<T>& c) { return _valid(c.min) && _valid(c.max); }

#endif

0 comments on commit 5c88705

Please sign in to comment.