Use the helper type but hide it in the doc

This commit is contained in:
Maxime Gimeno 2018-10-12 10:21:13 +02:00
parent 500c2a7200
commit c05f2f98f8
1 changed files with 6 additions and 1 deletions

View File

@ -648,7 +648,12 @@ public:
}
//! Returns the datum (geometric object) represented `p`.
typename AABBTraits::Primitive::Datum_reference datum(Primitive& p)const
#ifndef DOXYGEN_RUNNING
typename internal::Primitive_helper<AABBTraits>::Datum_type
#else
typename AABBTraits::Primitive::Datum_reference
#endif
datum(Primitive& p)const
{
return internal::Primitive_helper<AABBTraits>::
get_datum(p, this->traits());