-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix missing standard includes, reduce warnings in doxygen-enabled builds #3755
Fix missing standard includes, reduce warnings in doxygen-enabled builds #3755
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks :)
recognition/include/pcl/recognition/impl/ransac_based/simple_octree.hpp
Outdated
Show resolved
Hide resolved
|
#include <algorithm> | ||
#include <cmath> | ||
#include <cstddef> | ||
// #include <iostream> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason to keep the comment around?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Commented lines like
//std::cerr << min_sqr_distance; |
from #3744 (comment)
This reduces the doxygen-clang log by 1075 lines, bringing it to 16880 if we consider the ones from #3701 as done. There is absolutely no dependency between these two PRs though.