Skip to content

Commit

Permalink
Fix msvc warning
Browse files Browse the repository at this point in the history
  • Loading branch information
greg7mdp committed Oct 30, 2024
1 parent 22a7f6c commit 2d0b499
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion parallel_hashmap/phmap.h
Original file line number Diff line number Diff line change
Expand Up @@ -337,8 +337,9 @@ inline ctrl_t* EmptyGroup() {
kEmpty, kEmpty, kEmpty, kEmpty, kEmpty, kEmpty, kEmpty, kEmpty};

return const_cast<ctrl_t*>(empty_group);
} else {
return nullptr;
}
return nullptr;
}

// --------------------------------------------------------------------------
Expand Down

0 comments on commit 2d0b499

Please sign in to comment.