Commit 6e0f52e1 authored by jkummerow's avatar jkummerow Committed by Commit bot

Fix GCC builds after 204989a5 / r44650

TBR=ishell@chromium.org
NOTRY=true

Review-Url: https://codereview.chromium.org/2818773002
Cr-Commit-Position: refs/heads/master@{#44651}
parent 204989a5
......@@ -17656,6 +17656,7 @@ class StringTableNoAllocateKey : public HashTableKey {
string->set_hash_field(hash_field);
} else {
special_flattening_ = false;
one_byte_content_ = nullptr;
}
hash_ = string->Hash();
}
......@@ -17744,7 +17745,7 @@ class StringTableNoAllocateKey : public HashTableKey {
bool special_flattening_;
uint32_t hash_ = 0;
union {
uint8_t* one_byte_content_ = nullptr;
uint8_t* one_byte_content_;
uint16_t* two_byte_content_;
};
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment