Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
Amael Marquez committed Dec 15, 2023
1 parent 0b98833 commit 53b1fba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ This release introduces several bug fixes and minor improvements.
- [spatialPartitioning] Simplify node customization (#128)
- [fitting] Mark `Base` type as protected instead of private in CRTP classes (#119)
- [fitting] Improve KdTreeNodes API by hiding internal memory layout, improve methods naming (#120)
- [SpatialPartitioning] Change part of the kdtree API (#123)

- Examples
- Fix example cuda/ponca_ssgls (#109)
Expand Down
2 changes: 1 addition & 1 deletion Ponca/src/SpatialPartitioning/KdTree/kdTree.h
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ public :
} // namespace Ponca

template <typename Traits>
std::ostream& operator<<(std::ostream& os, Ponca::KdTreeBase<Traits>& kdtree)
std::ostream& operator<<(std::ostream& os, const Ponca::KdTreeBase<Traits>& kdtree)
{
kdtree.print(os);
return os;
Expand Down

0 comments on commit 53b1fba

Please sign in to comment.