Skip to content

Commit 5c88705

Browse files
committed
xrCore/fbox.h: Fixed compilation.
1 parent ced76e0 commit 5c88705

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xrCore/_fbox.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,6 @@ typedef _box3<double> Dbox;
382382
typedef _box3<double> Dbox3;
383383

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

387387
#endif

0 commit comments

Comments
 (0)