1
1
mirror of https://github.com/rui314/mold.git synced 2024-09-11 13:06:59 +03:00

Fix GCC warning

Fixes https://github.com/rui314/mold/issues/1205
This commit is contained in:
Rui Ueyama 2024-02-28 14:03:40 +09:00
parent fcda712238
commit 1e413d4121

View File

@ -141,7 +141,7 @@ struct NameType {
struct MapValue {
u32 hash = 0;
Atomic<u32> count = 0;
Atomic<u32> count;
u32 name_offset = 0;
u32 type_offset = 0;
};