Skip to content

Commit e8a3771

Browse files
authored
Fix indent
1 parent 57fa4a9 commit e8a3771

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/extensibility/debugger/reference/bp-resolution-info.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@ Describes the bound breakpoint information for either a code breakpoint or a dat
2020

2121
```cpp
2222
typedef struct _BP_RESOLUTION_INFO {
23-
BPRESI_FIELDS dwFields;
24-
BP_RESOLUTION_LOCATION bpResLocation;
25-
IDebugProgram2* pProgram;
26-
IDebugThread2* pThread;
23+
BPRESI_FIELDS dwFields;
24+
BP_RESOLUTION_LOCATION bpResLocation;
25+
IDebugProgram2* pProgram;
26+
IDebugThread2* pThread;
2727
} BP_RESOLUTION_INFO;
2828
```
2929
3030
```csharp
3131
public struct BP_RESOLUTION_INFO {
32-
public uint dwFields;
33-
public BP_RESOLUTION_LOCATION bpResLocation;
34-
public IDebugProgram2 pProgram;
35-
public IDebugThread2 pThread;
32+
public uint dwFields;
33+
public BP_RESOLUTION_LOCATION bpResLocation;
34+
public IDebugProgram2 pProgram;
35+
public IDebugThread2 pThread;
3636
};
3737
```
3838

0 commit comments

Comments
 (0)