From c62521803315d5b47bcb9a4ef5f5fa918cdb3363 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 19 Dec 2012 10:23:38 +0100 Subject: [PATCH] incorrect documented returned type --- .../doc/TDS_3/Concepts/TriangulationDataStructure_3.h | 2 +- .../TriangulationDS_3_ref/TriangulationDataStructure_3.tex | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Triangulation_3/doc/TDS_3/Concepts/TriangulationDataStructure_3.h b/Triangulation_3/doc/TDS_3/Concepts/TriangulationDataStructure_3.h index 9354f35e5d2..f7d043030bd 100644 --- a/Triangulation_3/doc/TDS_3/Concepts/TriangulationDataStructure_3.h +++ b/Triangulation_3/doc/TDS_3/Concepts/TriangulationDataStructure_3.h @@ -474,7 +474,7 @@ otherwise `Vertex_handle()` is returned. - `void operator()(const TDS_src::Vertex& v_src, Vertex& v_tgt);` This operator is meant to be used in case heavy data should transferred to `v_tgt`. - A model of ConvertCell must provide two operator()'s that are responsible for converting the source cell `c_src` into the target cell: - `Cell operator()(const TDS_src::Cell& c_src);` This operator is used to create the cell from `c_src`. - - `Cell operator()(const TDS_src::Cell& c_src, Cell& c_tgt);` This operator is meant to be used in case heavy data should transferred to `c_tgt`. + - `void operator()(const TDS_src::Cell& c_src, Cell& c_tgt);` This operator is meant to be used in case heavy data should transferred to `c_tgt`. \pre The optional argument `v` is a vertex of `tds_src` or is `Vertex_handle()`. */ diff --git a/Triangulation_3/doc_tex/TriangulationDS_3_ref/TriangulationDataStructure_3.tex b/Triangulation_3/doc_tex/TriangulationDS_3_ref/TriangulationDataStructure_3.tex index 2415cb904f4..bf09c6d111d 100644 --- a/Triangulation_3/doc_tex/TriangulationDS_3_ref/TriangulationDataStructure_3.tex +++ b/Triangulation_3/doc_tex/TriangulationDS_3_ref/TriangulationDataStructure_3.tex @@ -185,7 +185,7 @@ A model of \ccc{ConvertVertex} must provide two operator()'s that are responsibl \ccc{void operator()(const TDS_src::Vertex& v_src, Vertex& v_tgt);} This operator is meant to be used in case heavy data should transferred to \ccc{v_tgt}. A model of ConvertCell must provide two operator()'s that are responsible for converting the source cell \ccc{c_src} into the target cell: \ccc{Cell operator()(const TDS_src::Cell& c_src);} This operator is used to create the cell from \ccc{c_src}. -\ccc{Cell operator()(const TDS_src::Cell& c_src, Cell& c_tgt);} This operator is meant to be used in case heavy data should transferred to \ccc{c_tgt}. +\ccc{void operator()(const TDS_src::Cell& c_src, Cell& c_tgt);} This operator is meant to be used in case heavy data should transferred to \ccc{c_tgt}. \ccPrecond{The optional argument \ccc{v} is a vertex of \ccc{tds_src} or is \ccc{Vertex_handle()}.}} \ccMethod{void swap(TriangulationDataStructure_3 & tds1);}