#include "max_size.h" template IGL_INLINE int igl::max_size(const std::vector & V) { int max_size = -1; for( typename std::vector::const_iterator iter = V.begin(); iter != V.end(); iter++) { int size = (int)iter->size(); max_size = (max_size > size ? max_size : size); } return max_size; } #ifndef IGL_HEADER_ONLY // Explicit template specialization // generated by autoexplicit.sh template int igl::max_size > >(std::vector >, std::allocator > > > const&); // generated by autoexplicit.sh template int igl::max_size > >(std::vector >, std::allocator > > > const&); template int igl::max_size > >(std::vector >, std::allocator > > > const&); #endif