incorrect documented returned type

This commit is contained in:
Sébastien Loriot 2012-12-19 10:23:38 +01:00
parent 853c658a18
commit c625218033
2 changed files with 2 additions and 2 deletions

View File

@ -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()`.
*/

View File

@ -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);}