Bug 903501 - part 4 - initialize BufferSlice members in a form amenable to -Wreorder; r=jandem

This commit is contained in:
Nathan Froyd 2013-08-09 12:21:52 -04:00
parent 9b4b82f10d
commit caada534b1

View File

@ -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);