Skip to content

Commit

Permalink
Boost 1.84
Browse files Browse the repository at this point in the history
Small fixes in bistellar-flip.cpp.

This commit is to document a compile-time bug with vcpkg's CGAL port with the qt feature enabled.
  • Loading branch information
acgetchell committed Jan 27, 2024
1 parent 17f8302 commit 25379e6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -405,9 +405,11 @@ Optional:

## Issues

[vcpkg]'s version of [date] has an unfixed bug [#23637] which produces `use-of-uninitialized-value` in [MemorySanitizer].
- macOS currently doesn't build with Qt, see https://github.com/microsoft/vcpkg/issues/36409

[docopt] also has a `use-of-uninitialized-value` bug ([#149]).
- [vcpkg]'s version of [date] has an unfixed bug [#23637] which produces `use-of-uninitialized-value` in [MemorySanitizer].

- [docopt] also has a `use-of-uninitialized-value` bug ([#149]).

[#23637]: https://github.com/microsoft/vcpkg/issues/23637
[#149]: https://github.com/docopt/docopt.cpp/issues/149
Expand Down
6 changes: 3 additions & 3 deletions src/bistellar-flip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ try

#ifdef NDEBUG
fmt::print("Before bistellar flip.\n");
auto vertices = bistellar_triangulation_vertices();
ergodic_moves::Delaunay dt{vertices.begin(), vertices.end()};
manifolds::Manifold_3 manifold{
auto vertices = bistellar_triangulation_vertices();
ergodic_moves::Delaunay const dt{vertices.begin(), vertices.end()};
manifolds::Manifold_3 const manifold{
foliated_triangulations::FoliatedTriangulation_3{dt, 0, 1}
};
CGAL::draw(manifold.get_delaunay());
Expand Down

0 comments on commit 25379e6

Please sign in to comment.