Revision b080804f09d78cc462e1e0a611a6a3d5ae20e2d0 authored by Mael Rouxel-Labbé on 13 March 2018, 10:14:06 UTC, committed by Mael Rouxel-Labbé on 13 March 2018, 10:14:06 UTC
If the input point set is degenerate, dimension() < 3 is always 'true'
and we will eventually try to read beyond the end of the points vector.

See issue https://github.com/CGAL/cgal/issues/2922
1 parent 2974716
Raw File
update_CHANGES
#!/bin/sh

if html2text -rcfile html2textrc changes.html > CHANGES; then
  sed -i -e '0,/===============================================================================/ d' CHANGES
  sed -i -e '0,/===============================================================================/ d' CHANGES
fi
exit # remove this line to test the generation of CHANGES.md
if pandoc changes.html -t markdown-raw_html-native_divs-native_spans -o CHANGES.md; then
  sed -i -e '0,/^------------------------------------------------------------------------$/ d' CHANGES.md
  sed -i -e '0,/^------------------------------------------------------------------------$/ d' CHANGES.md
fi    

back to top