-
Notifications
You must be signed in to change notification settings - Fork 30
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
Support for OMPL 1.2.0 and above #139
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.
Very nice set of changes. Since you bumped the version number to 0.1.2
, please tag the commit that is merged into the master
accordingly.
#else | ||
#include <boost/smart_ptr.hpp> | ||
#include <boost/bind.hpp> | ||
#endif |
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.
We don't typically indent the contents of #if
blocks.
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.
Done
-> decltype(std::bind(std::forward<F>(f), std::forward<Args>(args)...)) | ||
{ | ||
return std::bind(std::forward<F>(f), std::forward<Args>(args)...); | ||
} |
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.
This is horrifying. Nice work. 😍
I bumped the version to distinguish this branch and master from v0.0.1, which is already released. I think we should add tag v0.0.2 (or greater) when we release the version (we might add more changes for v0.0.2) but not now. Please correct me if I didn't get your point. |
Tested for:
Related issue: #132
This change is