Skip to content

Commit fb09af6

Browse files
authored
Add blockquotes for error messages in range [C2121, C2140]
1 parent df4242d commit fb09af6

13 files changed

+13
-13
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: e04f32da-3736-4df3-8a1c-d687afcecf5c
88
---
99
# Compiler Error C2121
1010

11-
'#' : invalid character : possibly the result of a macro expansion
11+
> '#' : invalid character : possibly the result of a macro expansion
1212
1313
An invalid # character may have been inserted by an incorrect macro that uses the token-pasting operator (##) instead of the stringizing operator (#).

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: bc060002-cd38-481b-a144-65af035ce851
88
---
99
# Compiler Error C2122
1010

11-
'identifier' : prototype parameter in name list illegal
11+
> 'identifier' : prototype parameter in name list illegal
1212
1313
The parameter is not a legal type. ANSI C does not support user-defined types.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 93392aaa-5582-4d68-8cc5-bd9c62a0ae7e
88
---
99
# Compiler Error C2124
1010

11-
divide or mod by zero
11+
> divide or mod by zero
1212
1313
A constant expression has a zero denominator. To resolve the error, do not divide by zero.
1414

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

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

10-
'function' : alloc_text/same_seg applicable only to functions with C linkage
10+
> 'function' : alloc_text/same_seg applicable only to functions with C linkage
1111
1212
`#pragma alloc_text` can only be used with functions declared to have C linkage.
1313

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 21a8223e-1d22-4baa-9ca1-922b7f751dd0
88
---
99
# Compiler Error C2129
1010

11-
static function 'function' declared but not defined
11+
> static function 'function' declared but not defined
1212
1313
A forward reference is made to a **`static`** function that is never defined.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: c6fd5a7e-8f28-4f67-99d1-95a13b0dff90
88
---
99
# Compiler Error C2130
1010

11-
\#line expected a string containing the filename, found 'token'
11+
> #line expected a string containing the filename, found 'token'
1212
1313
The optional file name token following [#line](../../preprocessor/hash-line-directive-c-cpp.md) `linenumber` must be a string.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 32902472-49d1-4513-888f-b52d336839d5
88
---
99
# Compiler Error C2132
1010

11-
syntax error : unexpected identifier
11+
> syntax error : unexpected identifier
1212
1313
An identifier appears in an unsupported context.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 8942f9e8-9818-468f-97db-09dbd124fcae
88
---
99
# Compiler Error C2133
1010

11-
'identifier' : unknown size
11+
> 'identifier' : unknown size
1212
1313
An unsized array is declared as a member of a class, structure, union, or enumeration. The /Za (ANSI C) option does not allow unsized member arrays.
1414

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

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

10-
'function' : call does not result in a constant expression
10+
> 'function' : call does not result in a constant expression
1111
1212
A function declared as constexpr can only call other functions declared as constexpr.
1313

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: aa360d22-4f79-4de1-b384-93cadd10975f
88
---
99
# Compiler Error C2135
1010

11-
'bit operator' : illegal bit field operation
11+
> 'bit operator' : illegal bit field operation
1212
1313
The address-of operator (`&`) cannot be applied to a bit field.
1414

0 commit comments

Comments
 (0)