Skip to content

Commit 536c01c

Browse files
authored
Add blockquotes for error messages in range [C1001, C1020]
1 parent f0245f6 commit 536c01c

14 files changed

+14
-14
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: bd6d274a-c7b4-43af-8bf2-23c5e442aa22
88
---
99
# Fatal Error C1002
1010

11-
compiler is out of heap space in pass 2
11+
> compiler is out of heap space in pass 2
1212
1313
The compiler ran out of dynamic memory space during its second pass, probably due to a program with too many symbols or complex expressions.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 27d2d009-2e0f-41fb-8bfc-372752fbe920
88
---
99
# Fatal Error C1003
1010

11-
error count exceeds number; stopping compilation
11+
> error count exceeds number; stopping compilation
1212
1313
Errors in the program are too numerous to allow recovery. The compiler must terminate.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: dbe034b0-6eb0-41b4-a50c-2fccf9e78ad4
88
---
99
# Fatal Error C1004
1010

11-
unexpected end of file found
11+
> unexpected end of file found
1212
1313
The compiler reached the end of a source file without resolving a construct. The code may be missing one of the following elements:
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 150daf8e-a38a-4669-9c1a-a05b5a1f65ef
88
---
99
# Fatal Error C1005
1010

11-
string too big for buffer
11+
> string too big for buffer
1212
1313
A string in a compiler intermediate file overflowed a buffer.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 224f7e2c-4522-4e09-b455-8d293bdb799d
88
---
99
# Fatal Error C1007
1010

11-
unrecognized flag string in option
11+
> unrecognized flag string in option
1212
1313
The command-line option contains an invalid string. Check the **CL** command line and environment variable for errors.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 7de729e3-b2ca-4a68-95ab-8a1c920f3f2c
88
---
99
# Fatal Error C1008
1010

11-
no input file specified
11+
> no input file specified
1212
1313
The compiler was not given a C or C++ source file to compile. Check the **CL** command line and environment variable for filename specifications.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: dcc8383c-3362-4c47-9c26-25d2451ebd53
88
---
99
# Fatal Error C1009
1010

11-
compiler limit : macros nested too deeply
11+
> compiler limit : macros nested too deeply
1212
1313
The compiler tried to expand too many macros at the same time. The compiler has a limit of 256 levels of nested macros. Split nested macros into simpler macros.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ helpviewer_keywords: ["C1012"]
77
---
88
# Fatal Error C1012
99

10-
unmatched parenthesis: missing 'character'
10+
> unmatched parenthesis: missing 'character'
1111
1212
The parentheses in a preprocessor directive do not match.
1313

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 5514a679-efe7-4055-bdd3-5693ca0c332f
88
---
99
# Fatal Error C1013
1010

11-
compiler limit : too many open parentheses
11+
> compiler limit : too many open parentheses
1212
1313
An expression contains too many levels of parentheses in a single expression. Simplify the expression or break it into multiple statements.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 4c01ef70-e765-4d07-a3fe-a11c19fb610b
88
---
99
# Fatal Error C1014
1010

11-
too many include files : depth = level
11+
> too many include files : depth = level
1212
1313
The nesting of `#include` directives is too deep. Nested directives can include open files. The source file containing the directive counts as one file.

0 commit comments

Comments
 (0)