Skip to content

Commit 8bb2bea

Browse files
authored
Merge pull request #2105 from MicrosoftDocs/master
6/26/2019 AM Publish
2 parents fc6bdff + 2aa5eb0 commit 8bb2bea

30 files changed

+47
-49
lines changed

docs/build/reference/gd-gr-gv-gz-calling-convention.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ These options determine the order in which function arguments are pushed onto th
1414
> **/Gd**<br/>
1515
> **/Gr**<br/>
1616
> **/Gv**<br/>
17-
> **/Gz**<br/>
17+
> **/Gz**
1818
1919
## Remarks
2020

docs/build/reference/ltcg-link-time-code-generation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ Use **/LTCG** to perform whole-program optimization, or to create profile-guided
1111

1212
## Syntax
1313

14-
> **/LTCG**[**:**{**INCREMENTAL**|**NOSTATUS**|**STATUS**|**OFF**}]<br/>
14+
> **/LTCG**[**:**{**INCREMENTAL**|**NOSTATUS**|**STATUS**|**OFF**}]
1515
1616
These options are deprecated starting in Visual Studio 2015:
1717

18-
> **/LTCG:**{**PGINSTRUMENT**|**PGOPTIMIZE**|**PGUPDATE**}<br/>
18+
> **/LTCG:**{**PGINSTRUMENT**|**PGOPTIMIZE**|**PGUPDATE**}
1919
2020
### Arguments
2121

docs/build/release-builds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ A release build uses optimizations. When you use optimizations to create a relea
1616
[Using the Debug Build to Check for Memory Overwrite](using-the-debug-build-to-check-for-memory-overwrite.md)<br/>
1717
[How to: Debug a Release Build](how-to-debug-a-release-build.md)<br/>
1818
[Checking for Memory Overwrites](checking-for-memory-overwrites.md)<br/>
19-
[Optimizing Your Code](optimizing-your-code.md)<br/>
19+
[Optimizing Your Code](optimizing-your-code.md)
2020

2121
## See also
2222

docs/build/understanding-custom-build-steps-and-build-events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The `custom build step on the project` and a `post-build event` run sequentially
5555
[Specify Custom Build Tools](specifying-custom-build-tools.md)<br/>
5656
[Specify Build Events](specifying-build-events.md)<br/>
5757
[Troubleshoot Build Customizations](troubleshooting-build-customizations.md)<br/>
58-
[Format the Output of a Custom Build Step or Build Event](formatting-the-output-of-a-custom-build-step-or-build-event.md)<br/>
58+
[Format the Output of a Custom Build Step or Build Event](formatting-the-output-of-a-custom-build-step-or-build-event.md)
5959

6060
## See also
6161

docs/c-language/c-integer-constants.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,53 +13,53 @@ An *integer constant* is a decimal (base 10), octal (base 8), or hexadecimal (ba
1313
*integer-constant*:<br/>
1414
&nbsp;&nbsp;&nbsp;&nbsp;*decimal-constant* *integer-suffix*<sub>opt</sub><br/>
1515
&nbsp;&nbsp;&nbsp;&nbsp;*octal-constant* *integer-suffix*<sub>opt</sub><br/>
16-
&nbsp;&nbsp;&nbsp;&nbsp;*hexadecimal-constant* *integer-suffix*<sub>opt</sub><br/>
16+
&nbsp;&nbsp;&nbsp;&nbsp;*hexadecimal-constant* *integer-suffix*<sub>opt</sub>
1717

1818
*decimal-constant*:<br/>
1919
&nbsp;&nbsp;&nbsp;&nbsp;*nonzero-digit*<br/>
20-
&nbsp;&nbsp;&nbsp;&nbsp;*decimal-constant* *digit*<br/>
20+
&nbsp;&nbsp;&nbsp;&nbsp;*decimal-constant* *digit*
2121

2222
*octal-constant*:<br/>
2323
&nbsp;&nbsp;&nbsp;&nbsp;**0**<br/>
24-
&nbsp;&nbsp;&nbsp;&nbsp;*octal-constant* *octal-digit*<br/>
24+
&nbsp;&nbsp;&nbsp;&nbsp;*octal-constant* *octal-digit*
2525

2626
*hexadecimal-constant*:<br/>
2727
&nbsp;&nbsp;&nbsp;&nbsp;*hexadecimal-prefix* *hexadecimal-digit*<br/>
28-
&nbsp;&nbsp;&nbsp;&nbsp;*hexadecimal-constant* *hexadecimal-digit*<br/>
28+
&nbsp;&nbsp;&nbsp;&nbsp;*hexadecimal-constant* *hexadecimal-digit*
2929

3030
*hexadecimal-prefix*: one of<br/>
31-
&nbsp;&nbsp;&nbsp;&nbsp;**0x** **0X**<br/>
31+
&nbsp;&nbsp;&nbsp;&nbsp;**0x** **0X**
3232

3333
*nonzero-digit*: one of<br/>
34-
&nbsp;&nbsp;&nbsp;&nbsp;**1 2 3 4 5 6 7 8 9**<br/>
34+
&nbsp;&nbsp;&nbsp;&nbsp;**1 2 3 4 5 6 7 8 9**
3535

3636
*octal-digit*: one of<br/>
37-
&nbsp;&nbsp;&nbsp;&nbsp;**0 1 2 3 4 5 6 7**<br/>
37+
&nbsp;&nbsp;&nbsp;&nbsp;**0 1 2 3 4 5 6 7**
3838

3939
*hexadecimal-digit*: one of<br/>
4040
&nbsp;&nbsp;&nbsp;&nbsp;**0 1 2 3 4 5 6 7 8 9**<br/>
4141
&nbsp;&nbsp;&nbsp;&nbsp;**a b c d e f**<br/>
42-
&nbsp;&nbsp;&nbsp;&nbsp;**A B C D E F**<br/>
42+
&nbsp;&nbsp;&nbsp;&nbsp;**A B C D E F**
4343

4444
*integer-suffix*:<br/>
4545
&nbsp;&nbsp;&nbsp;&nbsp;*unsigned-suffix* *long-suffix*<sub>opt</sub><br/>
4646
&nbsp;&nbsp;&nbsp;&nbsp;*unsigned-suffix* *long-long-suffix*<br/>
4747
&nbsp;&nbsp;&nbsp;&nbsp;*unsigned-suffix* *64-bit-integer-suffix*<br/>
4848
&nbsp;&nbsp;&nbsp;&nbsp;*long-suffix* *unsigned-suffix*<sub>opt</sub><br/>
4949
&nbsp;&nbsp;&nbsp;&nbsp;*long-long-suffix* *unsigned-suffix*<sub>opt</sub><br/>
50-
&nbsp;&nbsp;&nbsp;&nbsp;*64-bit-integer-suffix*<br/>
50+
&nbsp;&nbsp;&nbsp;&nbsp;*64-bit-integer-suffix*
5151

5252
*unsigned-suffix*: one of<br/>
53-
&nbsp;&nbsp;&nbsp;&nbsp;**u U**<br/>
53+
&nbsp;&nbsp;&nbsp;&nbsp;**u U**
5454

5555
*long-suffix*: one of<br/>
56-
&nbsp;&nbsp;&nbsp;&nbsp;**l L**<br/>
56+
&nbsp;&nbsp;&nbsp;&nbsp;**l L**
5757

5858
*long-long-suffix*: one of<br/>
59-
&nbsp;&nbsp;&nbsp;&nbsp;**ll LL**<br/>
59+
&nbsp;&nbsp;&nbsp;&nbsp;**ll LL**
6060

6161
*64-bit-integer-suffix*: one of<br/>
62-
&nbsp;&nbsp;&nbsp;&nbsp;**i64 I64**<br/>
62+
&nbsp;&nbsp;&nbsp;&nbsp;**i64 I64**
6363

6464
The **i64** and **I64** suffixes are Microsoft-specific.
6565

docs/c-language/c-primary-expressions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ The operands in expressions are called "primary expressions."
1414
&nbsp;&nbsp;&nbsp;&nbsp;*identifier*<br/>
1515
&nbsp;&nbsp;&nbsp;&nbsp;*constant*<br/>
1616
&nbsp;&nbsp;&nbsp;&nbsp;*string-literal*<br/>
17-
&nbsp;&nbsp;&nbsp;&nbsp;**(** *expression* **)**<br/>
17+
&nbsp;&nbsp;&nbsp;&nbsp;**(** *expression* **)**
1818

1919
*expression*:<br/>
2020
&nbsp;&nbsp;&nbsp;&nbsp;*assignment-expression*<br/>
21-
&nbsp;&nbsp;&nbsp;&nbsp;*expression* **,** *assignment-expression*<br/>
21+
&nbsp;&nbsp;&nbsp;&nbsp;*expression* **,** *assignment-expression*
2222

2323
## See also
2424

docs/c-language/c-relational-and-equality-operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The binary relational and equality operators compare their first operand to thei
1515
&nbsp;&nbsp;&nbsp;&nbsp;*relational-expression* **&lt;** *shift-expression*<br/>
1616
&nbsp;&nbsp;&nbsp;&nbsp;*relational-expression* **>** *shift-expression*<br/>
1717
&nbsp;&nbsp;&nbsp;&nbsp;*relational-expression* **&lt;=** *shift-expression*<br/>
18-
&nbsp;&nbsp;&nbsp;&nbsp;*relational-expression* **>=** *shift-expression*<br/>
18+
&nbsp;&nbsp;&nbsp;&nbsp;*relational-expression* **>=** *shift-expression*
1919

2020
*equality-expression*:<br/>
2121
&nbsp;&nbsp;&nbsp;&nbsp;*relational-expression*<br/>

docs/c-language/c-string-literals.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ A "string literal" is a sequence of characters from the source character set enc
2020
&nbsp;&nbsp;&nbsp;&nbsp;*s-char-sequence* *s-char*
2121

2222
*s-char*:<br/>
23-
&nbsp;&nbsp;&nbsp;&nbsp;any member of the source character set except the double quotation mark ("), backslash (\\), or newline character<br/>
23+
&nbsp;&nbsp;&nbsp;&nbsp;any member of the source character set except the double quotation mark ("), backslash (\\), or newline character
2424

2525
&nbsp;&nbsp;&nbsp;&nbsp;*escape-sequence*
2626

docs/cpp/try-except-statement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The **try-except** statement is a Microsoft extension to the C and C++ languages
2020
> **\_\_except** ( *expression* )<br/>
2121
> {<br/>
2222
> &nbsp;&nbsp;&nbsp;&nbsp;// exception handler code<br/>
23-
> }<br/>
23+
> }
2424
2525
## Remarks
2626

docs/cpp/try-finally-statement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The following syntax describes the **try-finally** statement:
1818
> **\_\_finally**<br/>
1919
> {<br/>
2020
> &nbsp;&nbsp;&nbsp;&nbsp;// termination code<br/>
21-
> }<br/>
21+
> }
2222
2323
## Grammar
2424

docs/extensions/new-new-slot-in-vtable-cpp-component-extensions.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,5 +99,4 @@ E::f() called
9999
## See also
100100

101101
[Component Extensions for .NET and UWP](component-extensions-for-runtime-platforms.md)<br/>
102-
103-
[Override Specifiers](override-specifiers-cpp-component-extensions.md)
102+
[Override Specifiers](override-specifiers-cpp-component-extensions.md)

docs/ide/walkthrough-building-a-project-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ In this walkthrough, you deliberately introduce a C++ syntax error in your code
4646
## Next Steps
4747
4848
**Previous:** [Walkthrough: Working with Projects and Solutions (C++)](../ide/walkthrough-working-with-projects-and-solutions-cpp.md)<br/>
49-
**Next:** [Walkthrough: Testing a Project (C++)](../ide/walkthrough-testing-a-project-cpp.md)<br/>
49+
**Next:** [Walkthrough: Testing a Project (C++)](../ide/walkthrough-testing-a-project-cpp.md)
5050
5151
## See also
5252

docs/ide/walkthrough-debugging-a-project-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ In this walkthrough, you modify the program to fix the problem that you found wh
4545
## Next Steps
4646

4747
**Previous:** [Walkthrough: Testing a Project (C++)](../ide/walkthrough-testing-a-project-cpp.md)<br/>
48-
**Next:** [Walkthrough: Deploying Your Program (C++)](../ide/walkthrough-deploying-your-program-cpp.md)<br/>
48+
**Next:** [Walkthrough: Deploying Your Program (C++)](../ide/walkthrough-deploying-your-program-cpp.md)
4949

5050
## See also
5151

docs/ide/walkthrough-deploying-your-program-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ The steps in this section vary depending on which version of Visual Studio you h
9898

9999
## Next Steps
100100

101-
**Previous:** [Walkthrough: Debugging a Project (C++)](walkthrough-debugging-a-project-cpp.md)<br/>
101+
**Previous:** [Walkthrough: Debugging a Project (C++)](walkthrough-debugging-a-project-cpp.md)
102102

103103
## See also
104104

docs/ide/walkthrough-testing-a-project-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ In this walkthrough, you watch the value of a variable as the program runs and d
4949
## Next Steps
5050

5151
**Previous:** [Walkthrough: Building a Project (C++)](../ide/walkthrough-building-a-project-cpp.md)<br/>
52-
**Next:** [Walkthrough: Debugging a Project (C++)](../ide/walkthrough-debugging-a-project-cpp.md)<br/>
52+
**Next:** [Walkthrough: Debugging a Project (C++)](../ide/walkthrough-debugging-a-project-cpp.md)
5353

5454
## See also
5555

docs/ide/walkthrough-working-with-projects-and-solutions-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ Congratulations, you've successfully built an app project and solution. Continue
251251
## Next Steps
252252
253253
**Previous:** [Using the Visual Studio IDE for C++ Desktop Development](../ide/using-the-visual-studio-ide-for-cpp-desktop-development.md)<br/>
254-
**Next:** [Walkthrough: Building a Project (C++)](../ide/walkthrough-building-a-project-cpp.md)<br/>
254+
**Next:** [Walkthrough: Building a Project (C++)](../ide/walkthrough-building-a-project-cpp.md)
255255
256256
## See also
257257

docs/overview/libraries-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ Visual Studio includes the following libraries when you install one or more of t
1717

1818
[MFC/ATL](../mfc/mfc-and-atl.md)<br/>
1919
[Parallel Libraries](../parallel/parallel-programming-in-visual-cpp.md)<br/>
20-
[Data Access Libraries](../data/data-access-in-cpp.md)<br/>
20+
[Data Access Libraries](../data/data-access-in-cpp.md)
2121

docs/overview/visual-cpp-language-conformance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ __VS 2017 15.3__ indicates features that are supported in Visual Studio 2017 ver
339339
__VS 2017 15.5__ indicates features that are supported in Visual Studio 2017 version 15.5.<br/>
340340
__VS 2017 15.7__ indicates features that are supported in Visual Studio 2017 version 15.7.<br/>
341341
__VS 2019 16.0__ indicates features that are supported in Visual Studio 2019 version 16.0 (RTW).<br/>
342-
__VS 2019 16.1__ indicates features that are supported in Visual Studio 2019 version 16.1.<br/>
342+
__VS 2019 16.1__ indicates features that are supported in Visual Studio 2019 version 16.1.
343343

344344
### Notes
345345

docs/overview/visual-cpp-tools-and-features-in-visual-studio-editions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ Linux:
288288

289289
[Install Visual Studio](/visualstudio/install/install-visual-studio)<br/>
290290
[What's New in Visual Studio](/visualstudio/ide/whats-new-in-visual-studio)<br/>
291-
[C++ project types in Visual Studio](../build/reference/visual-cpp-project-types.md)<br/>
291+
[C++ project types in Visual Studio](../build/reference/visual-cpp-project-types.md)
292292

293293
::: moniker-end
294294

@@ -456,6 +456,6 @@ The following tables show Visual C++ features that are available in Visual Studi
456456

457457
[Install Visual Studio](/visualstudio/install/install-visual-studio)<br/>
458458
[What's New in Visual Studio](/visualstudio/ide/whats-new-in-visual-studio)<br/>
459-
[C++ project types in Visual Studio](../build/reference/visual-cpp-project-types.md)<br/>
459+
[C++ project types in Visual Studio](../build/reference/visual-cpp-project-types.md)
460460

461461
::: moniker-end

docs/porting/upgrading-projects-from-earlier-versions-of-visual-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ For information about how to update the targeted Windows versions, see [Modifyin
3434
[Floating-point migration issues](floating-point-migration-issues.md)<br/>
3535
[Use native multi-targeting in Visual Studio to build old projects](use-native-multi-targeting.md)<br/>
3636
[Visual C++ features deprecated in Visual Studio 2019 preview](features-deprecated-in-visual-studio.md)<br/>
37-
[Build System Changes](build-system-changes.md)<br/>
37+
[Build System Changes](build-system-changes.md)
3838

3939
## See also
4040

docs/preprocessor/compiler-warnings-that-are-off-by-default.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ The following warnings are turned off by default in Visual Studio 2015 and later
151151
::: moniker range=">= vs-2019"
152152
<sup>16.0</sup> This warning is available starting in Visual Studio 2019 RTM.<br/>
153153
::: moniker-end
154-
<sup>Perm</sup> This warning is off unless the [/permissive-](../build/reference/permissive-standards-conformance.md) compiler option is set.<br/>
154+
<sup>Perm</sup> This warning is off unless the [/permissive-](../build/reference/permissive-standards-conformance.md) compiler option is set.
155155

156156
## Warnings off by default in earlier versions
157157

docs/standard-library/iterators.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The hierarchy of iterator categories can be summarized by showing three sequence
5050
> output iterator<br/>
5151
> -> forward iterator<br/>
5252
> -> bidirectional iterator<br/>
53-
> -> random-access iterator<br/>
53+
> -> random-access iterator
5454
5555
The right arrow means "can be replaced by." Any algorithm that calls for an output iterator should work nicely with a forward iterator, for example, but *not* the other way around.
5656

@@ -59,15 +59,15 @@ For read-only access to a sequence, you can use any of:
5959
> input iterator<br/>
6060
> -> forward iterator<br/>
6161
> -> bidirectional iterator<br/>
62-
> -> random-access iterator<br/>
62+
> -> random-access iterator
6363
6464
An input iterator is the weakest of all categories, in this case.
6565

6666
Finally, for read/write access to a sequence, you can use any of:
6767

6868
> forward iterator<br/>
6969
> -> bidirectional iterator<br/>
70-
> -> random-access iterator<br/>
70+
> -> random-access iterator
7171
7272
An object pointer can always serve as a random-access iterator, so it can serve as any category of iterator if it supports the proper read/write access to the sequence it designates.
7373

docs/standard-library/promise-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class promise;
4343

4444
## Inheritance Hierarchy
4545

46-
*promise*<br/>
46+
*promise*
4747

4848
## Requirements
4949

docs/standard-library/regex-constants-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ The type is a bitmask type that describes options to be used when matching a tex
126126
127127
The match options are:
128128
129-
*match_default*<br/>
129+
`match_default`
130130
131131
`match_not_bol` -- do not treat the first position in the target sequence as the beginning of a line
132132

docs/standard-library/regex-traits-class.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,6 @@ static size_type length(const char_type *str);
219219
### Parameters
220220
221221
*str*<br/>
222-
223222
The null-terminated sequence.
224223
225224
### Remarks

docs/standard-library/unique-lock-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Internally, a `unique_lock` stores a pointer to an associated `mutex` object and
5959

6060
## Inheritance Hierarchy
6161

62-
*unique_lock*<br/>
62+
*unique_lock*
6363

6464
## Requirements
6565

docs/windows/adding-editing-or-deleting-controls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ Win32
187187

188188
[Manage Dialog Box Controls](controls-in-dialog-boxes.md)<br/>
189189
[How To: Layout Controls](arrangement-of-controls-on-dialog-boxes.md)<br/>
190-
[How to: Define Control Access and Values](defining-mnemonics-access-keys.md)<br/>
190+
[How to: Define Control Access and Values](defining-mnemonics-access-keys.md)
191191

192192
<!-- excluded links
193193
[Mapping Messages to Functions](../mfc/reference/mapping-messages-to-functions.md)<br/>

docs/windows/controls-in-dialog-boxes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Win32
8686

8787
## See also
8888

89-
[Dialog Editor](../windows/dialog-editor.md)<br/>
89+
[Dialog Editor](../windows/dialog-editor.md)
9090

9191
<!--
9292
[Adding Event Handlers for Dialog Box Controls](../windows/adding-event-handlers-for-dialog-box-controls.md)<br/>

docs/windows/menu-command-properties.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Win32
6868

6969
## See also
7070

71-
[Menu Editor](../windows/menu-editor.md)<br/>
71+
[Menu Editor](../windows/menu-editor.md)
7272

7373
<!--
7474
[Strings (ATL/MFC)](../atl-mfc-shared/strings-atl-mfc.md)<br/>-->

docs/windows/walkthrough-creating-a-standard-cpp-program-cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ The following steps vary depending on which version of Visual Studio you are usi
9999
## Next Steps
100100

101101
**Previous:** [Console Applications in Visual C++](../windows/console-applications-in-visual-cpp.md)<br/>
102-
**Next:** [Walkthrough: Compiling a Native C++ Program on the Command Line](../build/walkthrough-compiling-a-native-cpp-program-on-the-command-line.md)<br/>
102+
**Next:** [Walkthrough: Compiling a Native C++ Program on the Command Line](../build/walkthrough-compiling-a-native-cpp-program-on-the-command-line.md)
103103

104104
## See also
105105

106106
[C++ Language Reference](../cpp/cpp-language-reference.md)<br/>
107-
[C++ Standard Library](../standard-library/cpp-standard-library-reference.md)<br/>
107+
[C++ Standard Library](../standard-library/cpp-standard-library-reference.md)

0 commit comments

Comments
 (0)