Skip to content

Commit 393bb58

Browse files
authored
Add blockquotes for error messages in range [C2001, C2020]
1 parent 15871e1 commit 393bb58

18 files changed

+18
-18
lines changed

docs/error-messages/compiler-errors-1/compiler-error-c2001.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 0c3a7821-d8e5-4398-ab5a-4116d46e8dda
88
---
99
# Compiler Error C2001
1010

11-
newline in constant
11+
> newline in constant
1212
1313
A string constant cannot be continued on a second line unless you do the following:
1414

docs/error-messages/compiler-errors-1/compiler-error-c2002.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 91982314-203a-4de1-b884-94e39a623f61
88
---
99
# Compiler Error C2002
1010

11-
invalid wide-character constant
11+
> invalid wide-character constant
1212
1313
The multibyte-character constant is not valid.
1414

docs/error-messages/compiler-errors-1/compiler-error-c2003.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 3161bc08-593d-4448-9fd3-4e3810be9e82
88
---
99
# Compiler Error C2003
1010

11-
expected 'defined id'
11+
> expected 'defined id'
1212
1313
An identifier must follow the preprocessor keyword.

docs/error-messages/compiler-errors-1/compiler-error-c2004.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: d81526dd-3a00-4593-87b0-d910d3d29bca
88
---
99
# Compiler Error C2004
1010

11-
expected 'defined(id)'
11+
> expected 'defined(id)'
1212
1313
An identifier must appear in the parentheses following the preprocessor keyword.
1414

docs/error-messages/compiler-errors-1/compiler-error-c2005.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 090530ed-e0ec-4358-833a-ca24260e7ffe
88
---
99
# Compiler Error C2005
1010

11-
\#line expected a line number, found 'token'
11+
> #line expected a line number, found 'token'
1212
1313
The `#line` directive must be followed by a line number.
1414

docs/error-messages/compiler-errors-1/compiler-error-c2006.md

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

10-
'directive': expected "FILENAME" or \<FILENAME>
10+
> 'directive': expected "FILENAME" or \<FILENAME>
1111
1212
Directives such as [#include](../../preprocessor/hash-include-directive-c-cpp.md) or [#import](../../preprocessor/hash-import-directive-cpp.md) require a filename. To resolve the error, ensure the filename is valid and enclosed in either double quotes or angle brackets.
1313

docs/error-messages/compiler-errors-1/compiler-error-c2007.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: ecd09d99-5036-408b-9e46-bc15488f049e
88
---
99
# Compiler Error C2007
1010

11-
\#define syntax
11+
> #define syntax
1212
1313
No identifier appears after a `#define`. To resolve the error, use an identifier.
1414

docs/error-messages/compiler-errors-1/compiler-error-c2008.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: e748ccbe-ffd4-4008-aca7-e53c25225209
88
---
99
# Compiler Error C2008
1010

11-
'character' : unexpected in macro definition
11+
> 'character' : unexpected in macro definition
1212
1313
The character appears immediately following the macro name. To resolve the error, there must be a space after the macro name.
1414

docs/error-messages/compiler-errors-1/compiler-error-c2009.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: fe9d94ed-20a5-4d83-b9c4-60ee69d2f30a
88
---
99
# Compiler Error C2009
1010

11-
reuse of macro formal 'identifier'
11+
> reuse of macro formal 'identifier'
1212
1313
The formal parameter list of a macro definition uses the identifier more than once. Identifiers in the macro's parameter list must be unique.
1414

docs/error-messages/compiler-errors-1/compiler-error-c2010.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 5795ed1d-e206-410b-b7b4-528d125c67b4
88
---
99
# Compiler Error C2010
1010

11-
'character' : unexpected in macro formal parameter list
11+
> 'character' : unexpected in macro formal parameter list
1212
1313
The character is used incorrectly in the formal parameter list of a macro definition. Remove the character to resolve the error.
1414

0 commit comments

Comments
 (0)