Skip to content

Commit 4a325f4

Browse files
Merge pull request #5492 from Rageking8/structure-error-references-in-range-c1051-c1080
Structure error references in range [C1051, C1080]
2 parents f594e71 + f88d320 commit 4a325f4

21 files changed

+105
-80
lines changed
Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
---
2-
description: "Learn more about: Fatal Error C1051"
32
title: "Fatal Error C1051"
4-
ms.date: "11/04/2016"
3+
description: "Learn more about: Fatal Error C1051"
4+
ms.date: 11/04/2016
55
f1_keywords: ["C1051"]
66
helpviewer_keywords: ["C1051"]
7-
ms.assetid: 87dcbd3b-0952-499a-bd42-64f9e8de2605
87
---
98
# Fatal Error C1051
109

11-
program database file, 'pdbfile', has an obsolete format, delete it and recompile
10+
> program database file, 'pdbfile', has an obsolete format, delete it and recompile
11+
12+
## Remarks
1213

1314
The compiler cannot update the program database file, which has an older version number. Delete the file and recompile your program with **/Zi** or **/ZI**. For more information, see [/Z7, /Zi, /ZI (Debug Information Format)](../../build/reference/z7-zi-zi-debug-information-format.md)

docs/error-messages/compiler-errors-1/fatal-error-c1052.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
---
2-
description: "Learn more about: Fatal Error C1052"
32
title: "Fatal Error C1052"
4-
ms.date: "05/08/2017"
3+
description: "Learn more about: Fatal Error C1052"
4+
ms.date: 05/08/2017
55
f1_keywords: ["C1052"]
66
helpviewer_keywords: ["C1052"]
7-
ms.assetid: f2c09a2f-d3c1-4420-9501-ffcb65caf87b
87
---
98
# Fatal Error C1052
109

1110
> program database file, '*filename*', was generated by the linker with /DEBUG:fastlink; compiler cannot update such PDB files; please delete it or use /Fd to specify a different PDB filename
1211
12+
## Remarks
13+
1314
The compiler cannot update the same program database (PDB) files which are generated by the linker when the [/DEBUG:fastlink](../../build/reference/debug-generate-debug-info.md) option is specified. Normally the compiler-generated PDB files and the linker-generated PDB files have different names. However, if they are set to use the same names, this error can result.
1415

1516
To fix this issue, you can explicitly delete the PDB files before you compile again, or you can create different names for the compiler-generated and linker-generated PDB files.

docs/error-messages/compiler-errors-1/fatal-error-c1053.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
---
2-
description: "Learn more about: Fatal Error C1053"
32
title: "Fatal Error C1053"
4-
ms.date: "11/04/2016"
3+
description: "Learn more about: Fatal Error C1053"
4+
ms.date: 11/04/2016
55
f1_keywords: ["C1053"]
66
helpviewer_keywords: ["C1053"]
7-
ms.assetid: f50c1c6a-d9cc-42fa-984e-4e2e6e9cd1b1
87
---
98
# Fatal Error C1053
109

11-
'\<identifier>' : function too large
10+
> '\<identifier>' : function too large
11+
12+
## Remarks
1213

1314
The function is too large to compile.
1415

docs/error-messages/compiler-errors-1/fatal-error-c1054.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
---
2-
description: "Learn more about: Fatal Error C1054"
32
title: "Fatal Error C1054"
4-
ms.date: "11/04/2016"
3+
description: "Learn more about: Fatal Error C1054"
4+
ms.date: 11/04/2016
55
f1_keywords: ["C1054"]
66
helpviewer_keywords: ["C1054"]
7-
ms.assetid: 9cfb7307-b22a-4418-b7c0-2621b0ab5b1b
87
---
98
# Fatal Error C1054
109

11-
compiler limit : initializers nested too deeply
10+
> compiler limit : initializers nested too deeply
11+
12+
## Remarks
1213

1314
The code exceeds the nesting limit on initializers (10-15 levels, depending on the combination of types being initialized).
1415

docs/error-messages/compiler-errors-1/fatal-error-c1055.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
---
2-
description: "Learn more about: Fatal Error C1055"
32
title: "Fatal Error C1055"
4-
ms.date: "11/04/2016"
3+
description: "Learn more about: Fatal Error C1055"
4+
ms.date: 11/04/2016
55
f1_keywords: ["C1055"]
66
helpviewer_keywords: ["C1055"]
7-
ms.assetid: a9fb9190-d7eb-4d5f-b1a2-a41e584a28c1
87
---
98
# Fatal Error C1055
109

11-
compiler limit : out of keys
10+
> compiler limit : out of keys
11+
12+
## Remarks
1213

1314
The source file contains too many symbols. The compiler ran out of hash keys for the symbol table.
1415

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
---
2-
description: "Learn more about: Fatal Error C1057"
32
title: "Fatal Error C1057"
4-
ms.date: "11/04/2016"
3+
description: "Learn more about: Fatal Error C1057"
4+
ms.date: 11/04/2016
55
f1_keywords: ["C1057"]
66
helpviewer_keywords: ["C1057"]
7-
ms.assetid: 1e67e727-963d-42c5-8c32-c0e370d32735
87
---
98
# Fatal Error C1057
109

11-
unexpected end of file in macro expansion
10+
> unexpected end of file in macro expansion
11+
12+
## Remarks
1213

1314
The compiler reached the end of the source file while gathering macro-invocation arguments, probably due to a missing right parenthesis in the macro invocation.

docs/error-messages/compiler-errors-1/fatal-error-c1060.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
---
2-
description: "Learn more about: Fatal Error C1060"
32
title: "Fatal Error C1060"
4-
ms.date: "11/04/2016"
3+
description: "Learn more about: Fatal Error C1060"
4+
ms.date: 11/04/2016
55
f1_keywords: ["C1060"]
66
helpviewer_keywords: ["C1060"]
7-
ms.assetid: feaf305c-c84c-4160-b974-50e283412849
87
---
98
# Fatal Error C1060
109

11-
compiler is out of heap space
10+
> compiler is out of heap space
11+
12+
## Remarks
1213

1314
The operating system or run-time library cannot fill a request for memory.
1415

docs/error-messages/compiler-errors-1/fatal-error-c1061.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
---
2-
description: "Learn more about: Fatal Error C1061"
32
title: "Fatal Error C1061"
4-
ms.date: "11/04/2016"
3+
description: "Learn more about: Fatal Error C1061"
4+
ms.date: 11/04/2016
55
f1_keywords: ["C1061"]
66
helpviewer_keywords: ["C1061"]
7-
ms.assetid: 9366c0bc-96e0-4967-aa7d-4ebf098de806
87
---
98
# Fatal Error C1061
109

11-
compiler limit : blocks nested too deeply
10+
> compiler limit : blocks nested too deeply
11+
12+
## Remarks
1213

1314
Nesting of code blocks exceeds the limit of 128 nesting levels. This is a hard limit in the compiler for both C and C++, in both the 32-bit and 64-bit tool set. The count of nesting levels can be increased by anything that creates a scope or block. For example, namespaces, using directives, preprocessor expansions, template expansion, exception handling, loop constructs, and else-if clauses can all increase the nesting level seen by the compiler.
1415

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
---
2-
description: "Learn more about: Fatal Error C1064"
32
title: "Fatal Error C1064"
4-
ms.date: "11/04/2016"
3+
description: "Learn more about: Fatal Error C1064"
4+
ms.date: 11/04/2016
55
f1_keywords: ["C1064"]
66
helpviewer_keywords: ["C1064"]
7-
ms.assetid: d4598a28-b8f6-4e78-a0c6-db324f5bdfc3
87
---
98
# Fatal Error C1064
109

11-
compiler limit : token overflowed internal buffer
10+
> compiler limit : token overflowed internal buffer
11+
12+
## Remarks
1213

1314
An identifier exceeds the length of the internal buffer used for identifiers. Shorten the name.

docs/error-messages/compiler-errors-1/fatal-error-c1065.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
---
2-
description: "Learn more about: Fatal Error C1065"
32
title: "Fatal Error C1065"
4-
ms.date: "11/04/2016"
3+
description: "Learn more about: Fatal Error C1065"
4+
ms.date: 11/04/2016
55
f1_keywords: ["C1065"]
66
helpviewer_keywords: ["C1065"]
7-
ms.assetid: 80a27e13-696d-4199-a284-0d6b07446ff3
87
---
98
# Fatal Error C1065
109

11-
compiler limit : out of tags
10+
> compiler limit : out of tags
11+
12+
## Remarks
1213

1314
The source file contains more than 65,523 classes, structs, unions, namespaces, or enums.
1415

0 commit comments

Comments
 (0)