-
-
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
Remove use of deprecated concatenatePointCloud
#3364
Conversation
concatenatePointCloud
Is it also possible to locally disable deprecation warnings in |
|
Yes, but AFAIR we create test targets using a CMake macro, so not easy to add a custom option. Can we rather do it in code? |
Yes! But it might be compiler dependent. Clang usually respects GCC pragmas, but I don't know about MSVC++. For more details regarding the following snippet, link #pragma GCC diagnostic ignored -Wdeprecated
#pragma GCC diagnostic push
... code ...
#pragma diagnostic pop |
I think GCC would be enough, the log in Windows is full of warnings anyway :) |
|
Why does Apple have to be so weird? 😆 I'll try somethings and get back later |
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.
Please join the last two commits into one.
Fixed for appleclang
61b5d9f
to
0f1eebf
Compare
Fixes #3349.