Skip to content

Commit f810ea0

Browse files
committed
Fix a compiler warning due to incorrect field order in TTDPositionRangeIndexedMemoryEvent's member initializer list
1 parent 41d18ec commit f810ea0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

api/debuggerapi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ namespace BinaryNinjaDebuggerAPI {
531531
uint64_t value; // Value that was read/written/executed
532532
uint8_t data[8]; // The next 8 bytes of data at the memory address
533533

534-
TTDPositionRangeIndexedMemoryEvent() : threadId(0), uniqueThreadId(0), address(0), size(0), instructionAddress(0), accessType(TTDMemoryRead), value(0)
534+
TTDPositionRangeIndexedMemoryEvent() : threadId(0), uniqueThreadId(0), address(0), instructionAddress(0), size(0), accessType(TTDMemoryRead), value(0)
535535
{
536536
memset(data, 0, sizeof(data));
537537
}

0 commit comments

Comments
 (0)