Skip to content
This repository has been archived by the owner on Dec 26, 2023. It is now read-only.

Commit

Permalink
Remove non-ASCII character (#99)
Browse files Browse the repository at this point in the history
Fixes msvc warning C4819: The file contains a character that cannot be represented in the current code page.
  • Loading branch information
actboy168 authored Oct 28, 2020
1 parent f6df9b2 commit c080132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/include/robin_hood.h
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,7 @@ class Table

// This protection against not deleting mMask shouldn't be needed as it's sufficiently
// protected with the 0==mMask check, but I have this anyways because g++ 7 otherwise
// reports a compile error: attempt to free a non-heap object ‘fm’
// reports a compile error: attempt to free a non-heap object 'fm'
// [-Werror=free-nonheap-object]
if (mKeyVals != reinterpret_cast_no_cast_align_warning<Node*>(&mMask)) {
std::free(mKeyVals);
Expand Down

0 comments on commit c080132

Please sign in to comment.