mirror of https://github.com/CGAL/cgal
Use the helper type but hide it in the doc
This commit is contained in:
parent
500c2a7200
commit
c05f2f98f8
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Reference in New Issue