Skip to content

Commit

Permalink
Fix debugger initialization (#64523)
Browse files Browse the repository at this point in the history
* Fix debugger initialization

* Revert "Fix debugger initialization"

This reverts commit 9a1f7db.

* Update DomainAssembly and PEAssembly to use DPTR
  • Loading branch information
tommcdon committed Feb 2, 2022
1 parent 5e38aec commit 77b69b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/coreclr/vm/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ typedef DPTR(class ComCallMethodDesc) PTR_ComCallMethodDesc;
typedef DPTR(class ComPlusCallMethodDesc) PTR_ComPlusCallMethodDesc;
typedef VPTR(class DebugInterface) PTR_DebugInterface;
typedef DPTR(class Dictionary) PTR_Dictionary;
typedef VPTR(class DomainAssembly) PTR_DomainAssembly;
typedef DPTR(class DomainAssembly) PTR_DomainAssembly;
typedef DPTR(struct FailedAssembly) PTR_FailedAssembly;
typedef VPTR(class EditAndContinueModule) PTR_EditAndContinueModule;
typedef DPTR(class EEClass) PTR_EEClass;
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/vm/peassembly.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class EditAndContinueModule;
class PEAssembly;
class SimpleRWLock;

typedef VPTR(PEAssembly) PTR_PEAssembly;
typedef DPTR(PEAssembly) PTR_PEAssembly;

// --------------------------------------------------------------------------------
// Types
Expand Down

0 comments on commit 77b69b8

Please sign in to comment.