Skip to content

Commit b6a8bd0

Browse files
TylerMSFTTylerMSFT
authored andcommitted
acrolinx
1 parent 91546d1 commit b6a8bd0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/ide/visualize-macro-expansion.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ helpviewer_keywords: ["macro expansion", "macro visualization"]
88
---
99
# Visualize C/C++ macro expansion
1010

11-
Long macros can be difficult to read. Visual Studio can now expand C and C++ macros: you can get a copy on the clipboard of what the expanded macro will look like, replace the macro inline with its expansion, and step-by-step expand a macro so you can see what it looks like at each stage of expansion. This article allows you to experiment with these features.
11+
Long macros can be difficult to read. Visual Studio can now expand C and C++ macros: you can get a copy on the clipboard of what the expanded macro looks like, replace the macro inline with its expansion, and step-by-step expand a macro so you can see what it looks like at each stage of expansion. This article allows you to experiment with these features.
1212

1313
## Prerequisites
1414

@@ -52,7 +52,7 @@ You can inspect a macro's expanded value, even when several preprocessor steps a
5252
:::image-end:::
5353
5454
1. Choose **Copy**.
55-
1. Create a comment following the `POWER` line and choose paste (`Ctrl+V`). You'll see the expansion of the macro as a comment near your macro: ```// (((10.0 * 20.0)* (5.0 * 2.0)) / 2.0)```.
55+
1. Create a comment following the `POWER` line and choose paste (`Ctrl+V`). THe expansion of the macro, as a comment near your macro, looks like: ```// (((10.0 * 20.0)* (5.0 * 2.0)) / 2.0)```.
5656
5757
## Expand a macro
5858

0 commit comments

Comments
 (0)