Skip to content

Commit 8d25498

Browse files
Address review comments
1 parent 7205e0d commit 8d25498

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/coreclr/inc/daccess.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2372,23 +2372,23 @@ typedef DPTR(TADDR) PTR_TADDR;
23722372

23732373
#ifndef NATIVEAOT
23742374
typedef ArrayDPTR(BYTE) PTR_BYTE;
2375-
typedef DPTR(WORD) PTR_WORD;
2376-
typedef DPTR(DWORD) PTR_DWORD;
2377-
typedef DPTR(ULONG64) PTR_ULONG64;
2378-
typedef DPTR(UINT64) PTR_UINT64;
23792375
typedef DPTR(PTR_BYTE) PTR_PTR_BYTE;
23802376
typedef DPTR(PTR_PTR_BYTE) PTR_PTR_PTR_BYTE;
23812377
typedef ArrayDPTR(signed char) PTR_SBYTE;
23822378
typedef ArrayDPTR(const BYTE) PTR_CBYTE;
23832379
typedef DPTR(INT8) PTR_INT8;
23842380
typedef DPTR(INT16) PTR_INT16;
23852381
typedef DPTR(UINT16) PTR_UINT16;
2382+
typedef DPTR(WORD) PTR_WORD;
23862383
typedef DPTR(USHORT) PTR_USHORT;
2384+
typedef DPTR(DWORD) PTR_DWORD;
23872385
typedef DPTR(LONG) PTR_LONG;
23882386
typedef DPTR(ULONG) PTR_ULONG;
23892387
typedef DPTR(INT32) PTR_INT32;
23902388
typedef DPTR(UINT32) PTR_UINT32;
2389+
typedef DPTR(ULONG64) PTR_ULONG64;
23912390
typedef DPTR(INT64) PTR_INT64;
2391+
typedef DPTR(UINT64) PTR_UINT64;
23922392
typedef DPTR(SIZE_T) PTR_SIZE_T;
23932393
typedef DPTR(int) PTR_int;
23942394
typedef DPTR(BOOL) PTR_BOOL;

0 commit comments

Comments
 (0)