Skip to content

Commit 0e81df7

Browse files
committed
Removing constructor to allow bitfields in unions.
1 parent 10e6be8 commit 0e81df7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mips/common/util/bitfield.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ struct BitField {
224224
storeUnaligned<U, helper::bytesCount>(storage + helper::firstByteOffset, span);
225225
}
226226
}
227-
uint8_t storage[BitFieldInternal::ComputeStorage<T...>::size()] = {0};
227+
uint8_t storage[BitFieldInternal::ComputeStorage<T...>::size()];
228228
};
229229

230230
} // namespace Utilities

0 commit comments

Comments
 (0)