| 25 | //////////////////////////////////////////////////////////////////////////////// |
| 26 | |
| 27 | __forceinline BBox ( ) { } |
| 28 | template<typename T1> |
| 29 | __forceinline BBox ( const BBox<T1>& other ) : lower(other.lower), upper(other.upper) {} |
| 30 | __forceinline BBox& operator=( const BBox& other ) { lower = other.lower; upper = other.upper; return *this; } |
nothing calls this directly
no outgoing calls
no test coverage detected