`prev` then `cur` is more logic

This commit is contained in:
Laurent Rineau 2023-06-15 12:33:00 +02:00
parent e574a3a191
commit 00aa91967b
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ public:
{
std::stringstream os;
os.precision(17);
os << " cur: " << debug_simplex(_cur) << "\n prev: " << debug_simplex(_prev);
os << " prev: " << debug_simplex(_prev) << "\n cur: " << debug_simplex(_cur);
return os.str();
}
#endif // CGAL_DEBUG_TRIANGULATION_SEGMENT_TRAVERSER_3