added a missing static to the Construct() member
This commit is contained in:
parent
011e4db7d2
commit
854717ecfc
|
@ -24,6 +24,9 @@
|
||||||
History
|
History
|
||||||
|
|
||||||
$Log: not supported by cvs2svn $
|
$Log: not supported by cvs2svn $
|
||||||
|
Revision 1.16 2007/03/22 18:12:00 pietroni
|
||||||
|
*** empty log message ***
|
||||||
|
|
||||||
Revision 1.15 2007/03/22 17:29:16 pietroni
|
Revision 1.15 2007/03/22 17:29:16 pietroni
|
||||||
*** empty log message ***
|
*** empty log message ***
|
||||||
|
|
||||||
|
@ -345,7 +348,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class Q>
|
template <class Q>
|
||||||
inline Box3 Construct( const Box3<Q> & b )
|
static inline Box3 Construct( const Box3<Q> & b )
|
||||||
{
|
{
|
||||||
return Box3(Point3<BoxScalarType>::Construct(b.min),Point3<BoxScalarType>::Construct(b.max));
|
return Box3(Point3<BoxScalarType>::Construct(b.min),Point3<BoxScalarType>::Construct(b.max));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue