More size_t fixes

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@841 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2013-07-22 15:12:57 +00:00
parent ff5425d84f
commit fb38697831
3 changed files with 19 additions and 6 deletions

View File

@@ -8,7 +8,12 @@
<!-- --------------------------------------------------------------------- -->
<tr valign=top><td><b>2.4</b> (?/?/?,Rev.830)</td><td>
<tr valign=top><td><b>2.4</b> (?/?/?,Rev.838)</td><td>
<b>Significant interface changes</b>
<ul>
<li><b>The functions n_vertices(),n_edges().n_faces() return size_t now.</b></li>
</ul>
<b>Vector Type</b>
<ul>
@@ -16,6 +21,13 @@
<li>minimize and maximize return vector_type& (reference) instead of vector_type (value) to allow chaining p.minimize(p1).minimize(p2). (Thanks to Vladimir Chalupecky for the hint)</li>
</ul>
<b>Core</b>
<ul>
<li>Allow PolyConnectivity::delete_edge to mark an edge as deleted, if there are no faces incident.</li>
<li>Don't use c headers in c++ files anymore</li>
</ul>
<b>IO</b>
<ul>
<li>Try to get rid of memory leak in IOManager(Changes the pointer used for IOManager to a static IOManager in the getter function)</li>
@@ -57,6 +69,7 @@
<b>Unittests</b>
<ul>
<li>Added unittest for skipping iterators</li>
<li>Added unittest for collapse and is_collapse_ok</li>
<li>Added unittests for delete_face</li>
<li>Added unittests for circulators</li>