Skip to content

Commit caf10c3

Browse files
committed
small edits
1 parent 3332862 commit caf10c3

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docs/build/reference/constexpr-control-constexpr-evaluation.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ Use the **`/constexpr`** compiler options to control parameters for **`constexpr
1111

1212
## Syntax
1313

14-
> **/constexpr:depth**<em>N</em>\
15-
> **/constexpr:backtrace**<em>N</em>\
16-
> **/constexpr:steps**<em>N</em>
14+
> `/constexpr:depth`<em>N</em>\
15+
> `/constexpr:backtrace`<em>N</em>\
16+
> `/constexpr:steps`<em>N</em>
1717
1818
## Arguments
1919

20-
**`depth`**<em>N</em>
20+
**`depth`**<em>N</em>\
2121
Limit the depth of recursive **`constexpr`** function invocation to *N* levels. The default is 512.
2222

23-
**`backtrace`**<em>N</em>
23+
**`backtrace`**<em>N</em>\
2424
Show up to *N* **`constexpr`** evaluations in diagnostics. The default is 10.
2525

26-
**`steps`**<em>N</em>
26+
**`steps`**<em>N</em>\
2727
Terminate **`constexpr`** evaluation after *N* steps. The default is 100,000. A step refers to an individual computation taken towards evaluating the constant expression. Increasing the maximum number of steps might cause compilation to take longer in cases where compilation would otherwise fail.
2828

2929
## Remarks

docs/build/reference/u-u-undefine-symbols.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ For a complete list of Microsoft-specific predefined macros, see [Predefined mac
4343
### To set this compiler option in the Visual Studio development environment
4444

4545
1. Open the project's **Property Pages** dialog box. For details, see [Set C++ compiler and build properties in Visual Studio](../working-with-project-properties.md).
46-
1. Select the **Configuration Properties** > **C/C++** > **Preprocessor"** property page.
46+
1. Select the **Configuration Properties** > **C/C++** > **Preprocessor** property page.
4747
1. Modify the **Undefine Preprocessor Definitions** or **Undefine All Preprocessor Definitions** properties.
4848

4949
### To set this compiler option programmatically

0 commit comments

Comments
 (0)