Fix GCC builds after 204989a5a / r44650

TBR=ishell@chromium.org
NOTRY=true

Review-Url: https://codereview.chromium.org/2818773002
Cr-Commit-Position: refs/heads/master@{#44651}
This commit is contained in:
jkummerow 2017-04-13 08:21:45 -07:00 committed by Commit bot
parent 204989a5aa
commit 6e0f52e1a8

View File

@ -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_;
};
};