Skip to content

Commit

Permalink
Avoid Visual C++ warning C4127
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljames committed Feb 27, 2017
1 parent 4aa74e5 commit da370a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/unordered/detail/implementation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3499,7 +3499,7 @@ template <typename N> struct node_algo
{
node_pointer n = next_node(prev);
std::size_t hash = n->hash_;
while (true) {
for (;;) {
node_pointer next = next_node(n);
if (!next || next->hash_ != hash) {
return n;
Expand Down

0 comments on commit da370a6

Please sign in to comment.