aabb: instance the class in util namespace

fixes clang compilation error
This commit is contained in:
Danny Robson 2015-03-10 16:20:12 +11:00
parent 2cd7ce0aca
commit e466b08a10

View File

@ -91,7 +91,7 @@ util::operator<< (std::ostream &os, AABB<S,T> b)
//-----------------------------------------------------------------------------
#define INSTANTIATE_S_T(S,T) \
template struct AABB<S,T>; \
namespace util { template struct AABB<S,T>; } \
template bool debug::valid (const AABB<S,T>&); \
template std::ostream& util::operator<< (std::ostream&, AABB<S,T>);