You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Set const in the inputs of the matcher.h and matcher.cc
* Add Quatro mode in a Python wrapper
* Make normal estimation based on OMP as well.
* Add API with normal vectors for easy integration with the `xyznormal` mode of ROBIN
* Clean unused variables
* Fix error in the example (change == to =)
* Remove weird semicolon to cover #99
* Remove [[nodiscard]] to cover #140
* Add 'InsertNewlineAtEOF' in the .clang-format
* Add newline at the end of file using .clang-format
* (Minor) Clean codes, e.g., managing double space, redundant line break, no-space, etc, via .clang-format
Hi, I noticed a minor inconsistency in the build.
In the
CMakeLists.txt
, CMAKE_CXX_STANDARD is set to 14:TEASER-plusplus/CMakeLists.txt
Line 4 in 111e2ce
But in
graph.h
,[[nodiscard]]
, which is a C++17 feature (https://en.cppreference.com/w/cpp/language/attributes/nodiscard), is used for example here:TEASER-plusplus/teaser/include/teaser/graph.h
Line 131 in 111e2ce
The text was updated successfully, but these errors were encountered: