Skip to content

Commit 3fe826f

Browse files
authored
Add blockquotes for error messages in range [C2141, C2160]
1 parent a6b6fe9 commit 3fe826f

18 files changed

+18
-18
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 10cf770f-0500-4220-ac90-a863b7ea5fe6
88
---
99
# Compiler Error C2141
1010

11-
array size overflow
11+
> array size overflow
1212
1313
An array exceeds the 2GB limit. Reduce the size of the array.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: d0dbe10e-0952-49a4-8b33-e82fb7558b19
88
---
99
# Compiler Error C2142
1010

11-
function declarations differ, variable parameters specified only in one of them
11+
> function declarations differ, variable parameters specified only in one of them
1212
1313
One declaration of the function contains a variable parameter list. Another declaration does not. ANSI C ([/Za](../../build/reference/za-ze-disable-language-extensions.md)) only.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 1d8d1456-e031-4965-9240-09a6e33ba81c
88
---
99
# Compiler Error C2143
1010

11-
syntax error : missing 'token1' before 'token2'
11+
> syntax error : missing 'token1' before 'token2'
1212
1313
The compiler expected a specific token (that is, a language element other than white space) and found another token instead.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 158e5809-8adb-4195-8ca5-684501defbc8
88
---
99
# Compiler Error C2145
1010

11-
syntax error : missing 'token' before identifier
11+
> syntax error : missing 'token' before identifier
1212
1313
The compiler expected `token` and found identifier instead.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 6bfb7de6-6723-4486-9350-c66ef88d7a64
88
---
99
# Compiler Error C2146
1010

11-
syntax error : missing 'token' before identifier 'identifier'
11+
> syntax error : missing 'token' before identifier 'identifier'
1212
1313
The compiler expected `token` and found `identifier` instead. Possible causes:
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: d1adb3bf-7ece-4815-922c-ad7492fb6670
88
---
99
# Compiler Error C2147
1010

11-
syntax error : 'identifier' is a new keyword
11+
> syntax error : 'identifier' is a new keyword
1212
1313
An identifier was used that is now a reserved keyword in the language.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: e510c2c9-7b57-4ce8-be03-ba363e2cc5d9
88
---
99
# Compiler Error C2148
1010

11-
total size of array must not exceed 0x7fffffff bytes
11+
> total size of array must not exceed 0x7fffffff bytes
1212
1313
An array exceeds the limit. Reduce the size of the array.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 7a106dab-d79f-41b9-85be-f36e86e4d2ab
88
---
99
# Compiler Error C2149
1010

11-
'identifier' : named bit field cannot have zero width
11+
> 'identifier' : named bit field cannot have zero width
1212
1313
Bit fields can have zero width only if unnamed.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 7f8dd83a-1f41-46d8-8778-0d1f79ed36c9
88
---
99
# Compiler Error C2151
1010

11-
more than one language attribute
11+
> more than one language attribute
1212
1313
A function has more than one keyword ( **`__cdecl`**, **`__stdcall`**, or **`__fastcall`**) specifying a calling convention.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: a9ea2b0c-d55d-41c7-ba9f-dd75592ffc8a
88
---
99
# Compiler Error C2152
1010

11-
'identifier' : pointers to functions with different attributes
11+
> 'identifier' : pointers to functions with different attributes
1212
1313
A pointer to a function with one calling convention (**`__cdecl`**, **`__stdcall`**, or **`__fastcall`**) is assigned to a pointer to a function with another calling convention.

0 commit comments

Comments
 (0)