Skip to content

Commit 99ed2e4

Browse files
authored
Fix indent
1 parent 725c5e2 commit 99ed2e4

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

docs/extensibility/debugger/reference/evalflags.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,26 @@ Specifies flags that control expression evaluation.
2020

2121
```cpp
2222
enum enum_EVALFLAGS {
23-
EVAL_RETURNVALUE = 0x0002,
24-
EVAL_NOSIDEEFFECTS = 0x0004,
25-
EVAL_ALLOWBPS = 0x0008,
26-
EVAL_ALLOWERRORREPORT = 0x0010,
27-
EVAL_FUNCTION_AS_ADDRESS = 0x0040,
28-
EVAL_NOFUNCEVAL = 0x0080,
29-
EVAL_NOEVENTS = 0x1000
23+
EVAL_RETURNVALUE = 0x0002,
24+
EVAL_NOSIDEEFFECTS = 0x0004,
25+
EVAL_ALLOWBPS = 0x0008,
26+
EVAL_ALLOWERRORREPORT = 0x0010,
27+
EVAL_FUNCTION_AS_ADDRESS = 0x0040,
28+
EVAL_NOFUNCEVAL = 0x0080,
29+
EVAL_NOEVENTS = 0x1000
3030
};
3131
typedef DWORD EVALFLAGS;
3232
```
3333

3434
```csharp
3535
public enum enum_EVALFLAGS {
36-
EVAL_RETURNVALUE = 0x0002,
37-
EVAL_NOSIDEEFFECTS = 0x0004,
38-
EVAL_ALLOWBPS = 0x0008,
39-
EVAL_ALLOWERRORREPORT = 0x0010,
40-
EVAL_FUNCTION_AS_ADDRESS = 0x0040,
41-
EVAL_NOFUNCEVAL = 0x0080,
42-
EVAL_NOEVENTS = 0x1000
36+
EVAL_RETURNVALUE = 0x0002,
37+
EVAL_NOSIDEEFFECTS = 0x0004,
38+
EVAL_ALLOWBPS = 0x0008,
39+
EVAL_ALLOWERRORREPORT = 0x0010,
40+
EVAL_FUNCTION_AS_ADDRESS = 0x0040,
41+
EVAL_NOFUNCEVAL = 0x0080,
42+
EVAL_NOEVENTS = 0x1000
4343
}
4444
```
4545

0 commit comments

Comments
 (0)