-
Notifications
You must be signed in to change notification settings - Fork 50
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 header boost/detail/iterator.hpp #91
Conversation
Thanks for the PR @Lastique . Will this code work OK with C++03? |
Yes, I see no reason why it shouldn't. |
Thank you. Do we need |
There is a call to |
Ah, OK. What do you think about replacing |
Sure, I can do that. |
The header is deprecated in favor of <iterator>. It generates compiler warnings and will be removed in a future release. Also, replaced iterator_value trait with iterator_traits.
a8d3815
to
9509a04
Compare
Done. |
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.
LGTM, thanks!
@Lastique Travis failed with a Clang issue related to Filesystem - it looks like you were the last to touch the associated file :) Would you be willing to look at the failure? |
That failure is unrelated to this PR. Looks like |
You can restart the CI job, it should succeed now. |
The header is deprecated in favor of
<iterator>
. It generates compiler warnings and will be removed in a future release.Also, added a missing include for
iterator_value
trait.