Skip to content

Commit

Permalink
Merge pull request #1716 from DGtal-team/BoostPriorNext
Browse files Browse the repository at this point in the history
Fixing missing boost includes
  • Loading branch information
dcoeurjo authored Feb 1, 2024
2 parents 98d790d + 29132ac commit 32d634c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@

## Bug fixes
- *General*
- Missing `boost/next_prior.hpp` includes in ReverseIterator, Melkman and Convex
Hull files (David Coeurjolly, [#1716](https://github.com/DGtal-team/DGtal/pull/1716))
- Activate and fix CTest tests on windows system. (Bertrand Kerautret,
[#1706](https://github.com/DGtal-team/DGtal/pull/1706))
- For now, removing Cairo deps install on windows (6hours long build
Expand Down
1 change: 1 addition & 0 deletions src/DGtal/base/ReverseIterator.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
#include "DGtal/base/IteratorCirculatorTraits.h"
#include <boost/iterator.hpp>
#include <boost/utility.hpp>
#include <boost/next_prior.hpp>
#include <boost/iterator/iterator_adaptor.hpp>
//////////////////////////////////////////////////////////////////////////////

Expand Down
2 changes: 2 additions & 0 deletions src/DGtal/geometry/tools/Hull2DHelpers.ih
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
//////////////////////////////////////////////////////////////////////////////
#include <cstdlib>
#include <cmath>
#include <boost/utility.hpp>
#include <boost/next_prior.hpp>

#include "DGtal/kernel/PointVector.h"
//////////////////////////////////////////////////////////////////////////////
Expand Down
2 changes: 2 additions & 0 deletions src/DGtal/geometry/tools/MelkmanConvexHull.ih
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@

//////////////////////////////////////////////////////////////////////////////
#include <cstdlib>
#include <boost/utility.hpp>
#include <boost/next_prior.hpp>
//////////////////////////////////////////////////////////////////////////////

///////////////////////////////////////////////////////////////////////////////
Expand Down
2 changes: 0 additions & 2 deletions tests/geometry/tools/testConvexHull2DReverse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@
#include "DGtal/geometry/tools/Hull2DHelpers.h"
#include "DGtal/geometry/tools/MelkmanConvexHull.h"
#include "DGtal/geometry/tools/determinant/InHalfPlaneBySimple3x3Matrix.h"


///////////////////////////////////////////////////////////////////////////////

using namespace std;
Expand Down

0 comments on commit 32d634c

Please sign in to comment.