Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
facontidavide committed Nov 10, 2024
1 parent 002b340 commit 7786365
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion bonxai_core/include/bonxai/bonxai.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
#include <algorithm>
#include <cmath>
#include <cstdint>
#include <functional>
#include <limits>
#include <memory>
#include <stdexcept>
Expand Down
2 changes: 0 additions & 2 deletions examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,3 @@ if(octomap_FOUND)
${OCTOMAP_LIBRARIES}
)
endif()


2 changes: 1 addition & 1 deletion examples/tutorial.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ int main() {

// When you have a const reference to the VoxelGrid or/and you want
// non-mutable interfaces, you can do instead
auto constVisitor = [](const int& value, const Bonxai::CoordT& coord) {
auto constVisitor = [](const int& value, const Bonxai::CoordT& /*coord*/) {
if (value < 0) {
throw std::runtime_error("unexpected");
}
Expand Down

0 comments on commit 7786365

Please sign in to comment.