Fix namespace

This commit is contained in:
Andreas Fabri 2022-03-15 22:47:32 +01:00
parent c818c0ef28
commit 35fb2fd971
2 changed files with 2 additions and 1 deletions

View File

@ -33,6 +33,7 @@ void write_VTU(std::ostream& os,
//! //!
//! \param os the stream used for writing. //! \param os the stream used for writing.
//! \param tr the triangulated domain to be written. //! \param tr the triangulated domain to be written.
//! \param ipm the property map storing if a face is in the domain.
//! \param mode decides if the data should be written in binary (`BINARY`) //! \param mode decides if the data should be written in binary (`BINARY`)
//! or in \ascii (`ASCII`). //! or in \ascii (`ASCII`).
//! //!

View File

@ -405,7 +405,7 @@ void write_VTU(std::ostream& os,
const CDT& tr, const CDT& tr,
Mode mode = BINARY) Mode mode = BINARY)
{ {
internal::In_domain<CDT> in_domain; CGAL::internal::In_domain<CDT> in_domain;
write_VTU(os, tr, in_domain, mode); write_VTU(os, tr, in_domain, mode);
} }