diff --git a/Doc/changelog.docu b/Doc/changelog.docu
index f2937c01..83ff02c4 100644
--- a/Doc/changelog.docu
+++ b/Doc/changelog.docu
@@ -6,16 +6,16 @@
-
| 3.4 (?/?/?,Rev.1228) |
+ |
| 3.4 (?/?/?,Rev.1234) |
Core
- Fixed crash when writing with multiple threads to mostream. closes #2293 (Note: This fix is only active with C++11 support)
- fix "relink failed" condition closes #1244. This patch fixes a rare condition in add_face, where a non-manifold configuration could be created.
-- Fixed the problem that the end iterator could become valid again if it was incremented.
-- Decrementing the start iterator will return an invalid iterator now (Maybe we can implement reverse iterators)
-- Removed one check from the circulator iterations, which should result in faster execution of is_valid().
-- Added CW and CCW Circulators
+- Added CW and CCW Circulators ( These new iterator versions also fix the problems that circulators could get valid again, if iterating past the end,
+ they are also faster, as the require one check less then the old ones.)
+- Implement a warning on the operator-- of the old iterators. It was possible to use them to iterate from begin into negative direction. At boundaries,
+ that did not work correctly and visited one entity twice. The warning can be disabled via cmake or define (-DNO_DECREMENT_DEPRECATED_WARNINGS ).
IO
|