mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 903501 - part 4 - initialize BufferSlice members in a form amenable to -Wreorder; r=jandem
This commit is contained in:
parent
9b4b82f10d
commit
caada534b1
@ -72,7 +72,7 @@ struct BufferSlice {
|
||||
unsigned int size() {
|
||||
return nodeSize;
|
||||
}
|
||||
BufferSlice() : next(NULL), prev(NULL), nodeSize(0) {}
|
||||
BufferSlice() : prev(NULL), next(NULL), nodeSize(0) {}
|
||||
void putBlob(uint32_t instSize, uint8_t* inst) {
|
||||
if (inst != NULL)
|
||||
memcpy(&instructions[size()], inst, instSize);
|
||||
|
Loading…
Reference in New Issue
Block a user