Skip to content

Commit 6a320f6

Browse files
authored
Merge pull request #5381 from Rageking8/resolve-misplaced-leading-backtick-in-link-text
Resolve misplaced leading backtick in link text
2 parents 29820cb + 149a431 commit 6a320f6

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

docs/build/reference/linker-property-pages.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
2-
description: "Learn more about: Linker Property Pages"
32
title: "Linker Property Pages"
3+
description: "Learn more about: Linker Property Pages"
44
ms.date: 09/07/2022
55
ms.topic: "article"
66
f1_keywords: ["VC.Project.VCLinkerTool.IgnoreImportLibrary", "VC.Project.VCLinkerTool.RegisterOutput", "VC.Project.VCLinkerTool.PerUserRedirection", "VC.Project.VCLinkerTool.LinkLibraryDependencies", "VC.Project.VCLinkerTool.UseLibraryDependencyInputs"]
7-
ms.assetid: 7e7671e5-a35a-4e67-9bdb-661d75c4d11e
87
---
98
# Linker Property Pages
109

@@ -252,7 +251,7 @@ Specifies total heap allocation size in virtual memory. Default is 1 MB. ([`/
252251

253252
### Heap Commit Size
254253

255-
Specifies total heap allocation size in physical memory. Default is 4 KB. (`[/HEAP:reserve,commit`](heap-set-heap-size.md))
254+
Specifies total heap allocation size in physical memory. Default is 4 KB. ([`/HEAP:reserve,commit`](heap-set-heap-size.md))
256255

257256
### Stack Reserve Size
258257

@@ -373,7 +372,7 @@ Partially sign the Windows Metadata. Use [`/WINMDDELAYSIGN`](winmddelaysign-part
373372

374373
### Entry Point
375374

376-
The `[/ENTRY`](entry-entry-point-symbol.md) option specifies an entry point function as the starting address for an *`.exe`* file or DLL.
375+
The [`/ENTRY`](entry-entry-point-symbol.md) option specifies an entry point function as the starting address for an *`.exe`* file or DLL.
377376

378377
### No Entry Point
379378

docs/error-messages/compiler-errors-2/compiler-error-c2653.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
2-
description: "Learn more about: Compiler Error C2653"
32
title: "Compiler Error C2653"
4-
ms.date: "11/30/2017"
3+
description: "Learn more about: Compiler Error C2653"
4+
ms.date: 11/30/2017
55
f1_keywords: ["C2653"]
66
helpviewer_keywords: ["C2653"]
7-
ms.assetid: 3f49e731-affd-43a0-a8d0-181db7650bc3
87
---
98
# Compiler Error C2653
109

@@ -14,7 +13,7 @@ The language syntax requires a class, structure, union, or namespace name here.
1413

1514
This error can occur when you use a name that has not been declared as a class, structure, union, or namespace in front of a scope operator. To fix this issue, declare the name or include the header that declares the name before it is used.
1615

17-
C2653 is also possible if you try to define a *compound namespace*, a namespace that contains one or more scope-nested namespace names. Compound namespace definitions are not allowed in C++ prior to C++17. Compound namespaces are supported starting in Visual Studio 2015 Update 3 when you specify the [`/std:c++latest`](../../build/reference/std-specify-language-standard-version.md) compiler option. Starting in Visual Studio 2017 version 15.5, the compiler supports compound namespace definitions when the `[/std:c++17`](../../build/reference/std-specify-language-standard-version.md) or later option is specified.
16+
C2653 is also possible if you try to define a *compound namespace*, a namespace that contains one or more scope-nested namespace names. Compound namespace definitions are not allowed in C++ prior to C++17. Compound namespaces are supported starting in Visual Studio 2015 Update 3 when you specify the [`/std:c++latest`](../../build/reference/std-specify-language-standard-version.md) compiler option. Starting in Visual Studio 2017 version 15.5, the compiler supports compound namespace definitions when the [`/std:c++17`](../../build/reference/std-specify-language-standard-version.md) or later option is specified.
1817

1918
## Examples
2019

0 commit comments

Comments
 (0)