Skip to content

Commit 30a8d4b

Browse files
authored
Add blockquotes for error messages in range [C1051, C1080]
1 parent 7bd2ed3 commit 30a8d4b

17 files changed

+17
-17
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 87dcbd3b-0952-499a-bd42-64f9e8de2605
88
---
99
# Fatal Error C1051
1010

11-
program database file, 'pdbfile', has an obsolete format, delete it and recompile
11+
> program database file, 'pdbfile', has an obsolete format, delete it and recompile
1212
1313
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-c1053.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: f50c1c6a-d9cc-42fa-984e-4e2e6e9cd1b1
88
---
99
# Fatal Error C1053
1010

11-
'\<identifier>' : function too large
11+
> '<identifier>' : function too large
1212
1313
The function is too large to compile.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 9cfb7307-b22a-4418-b7c0-2621b0ab5b1b
88
---
99
# Fatal Error C1054
1010

11-
compiler limit : initializers nested too deeply
11+
> compiler limit : initializers nested too deeply
1212
1313
The code exceeds the nesting limit on initializers (10-15 levels, depending on the combination of types being initialized).
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: a9fb9190-d7eb-4d5f-b1a2-a41e584a28c1
88
---
99
# Fatal Error C1055
1010

11-
compiler limit : out of keys
11+
> compiler limit : out of keys
1212
1313
The source file contains too many symbols. The compiler ran out of hash keys for the symbol table.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 1e67e727-963d-42c5-8c32-c0e370d32735
88
---
99
# Fatal Error C1057
1010

11-
unexpected end of file in macro expansion
11+
> unexpected end of file in macro expansion
1212
1313
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: feaf305c-c84c-4160-b974-50e283412849
88
---
99
# Fatal Error C1060
1010

11-
compiler is out of heap space
11+
> compiler is out of heap space
1212
1313
The operating system or run-time library cannot fill a request for memory.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 9366c0bc-96e0-4967-aa7d-4ebf098de806
88
---
99
# Fatal Error C1061
1010

11-
compiler limit : blocks nested too deeply
11+
> compiler limit : blocks nested too deeply
1212
1313
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.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: d4598a28-b8f6-4e78-a0c6-db324f5bdfc3
88
---
99
# Fatal Error C1064
1010

11-
compiler limit : token overflowed internal buffer
11+
> compiler limit : token overflowed internal buffer
1212
1313
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 80a27e13-696d-4199-a284-0d6b07446ff3
88
---
99
# Fatal Error C1065
1010

11-
compiler limit : out of tags
11+
> compiler limit : out of tags
1212
1313
The source file contains more than 65,523 classes, structs, unions, namespaces, or enums.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: e2c94be6-4573-4571-aac9-73d657fe9f96
88
---
99
# Fatal Error C1067
1010

11-
compiler limit : 64K limit on size of a type record has been exceeded
11+
> compiler limit : 64K limit on size of a type record has been exceeded
1212
1313
This error could occur if a symbol has a decorated name exceeding 247 characters. To resolve, shorten the symbol name.
1414

0 commit comments

Comments
 (0)