Skip to content

Commit 9d6cd2e

Browse files
authored
Add blockquotes for warning messages in range [C4121, C4160]
1 parent dda89e0 commit 9d6cd2e

19 files changed

+19
-19
lines changed

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4122.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 9a83eb0d-8708-42f7-988a-b0b6f2f646a0
88
---
99
# Compiler Warning (level 1) C4122
1010

11-
'function' : alloc_text applicable only to functions with C linkage
11+
> 'function' : alloc_text applicable only to functions with C linkage
1212
1313
The **alloc_text** pragma applies only to functions declared with **extern c**. It cannot be used with external C++ functions.
1414

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4124.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: c08c3a65-9584-47a1-a147-44f00c4b230e
88
---
99
# Compiler Warning (level 1) C4124
1010

11-
__fastcall with stack checking is inefficient
11+
> __fastcall with stack checking is inefficient
1212
1313
The **`__fastcall`** keyword was used with stack checking enabled.
1414

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4129.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: a4190c64-4bfb-48fd-8e98-52720bc0d878
88
---
99
# Compiler Warning (level 1) C4129
1010

11-
'character' : unrecognized character escape sequence
11+
> 'character' : unrecognized character escape sequence
1212
1313
The `character` following a backslash (\\) in a character or string constant is not recognized as a valid escape sequence. The backslash is ignored and not printed. The character following the backslash is printed.
1414

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4138.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 65ebf929-bba0-4237-923b-c1b66adfe17d
88
---
99
# Compiler Warning (level 1) C4138
1010

11-
'*/' found outside of comment
11+
> '*/' found outside of comment
1212
1313
The closing-comment delimiter is not preceded by an opening-comment delimiter. The compiler assumes a space between the asterisk (<strong>\*</strong>) and the forward slash (/).
1414

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4142.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 1fdfc3dc-60a2-4f00-b133-20e400f9b7a6
88
---
99
# Compiler Warning (level 1) C4142
1010

11-
benign redefinition of type
11+
> benign redefinition of type
1212
1313
A type is redefined in a manner that has no effect on the generated code.
1414

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4143.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: ef0bd19f-d169-4034-8710-b22971bd642d
88
---
99
# Compiler Warning (level 1) C4143
1010

11-
pragma 'same_seg' not supported; use __based allocation
11+
> pragma 'same_seg' not supported; use __based allocation
1212
1313
The **#pragma same_seg** is no longer supported. Use the [__based](../../cpp/based-pointers-cpp.md) keyword instead.

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4144.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: a37b445d-dbc6-43b4-8d95-ffd0e4225464
88
---
99
# Compiler Warning (level 1) C4144
1010

11-
'expression' : relational expression as switch expression
11+
> 'expression' : relational expression as switch expression
1212
1313
The specified relational expression was used as the control expression of a [switch](../../cpp/switch-statement-cpp.md) statement. The associated case statements will be offered Boolean values. The following sample generates C4144:
1414

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4145.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 0440777a-cca2-4159-aff5-e67a254ad64a
88
---
99
# Compiler Warning (level 1) C4145
1010

11-
'expression1' : relational expression as switch expression; possible confusion with 'expression2'
11+
> 'expression1' : relational expression as switch expression; possible confusion with 'expression2'
1212
1313
A **`switch`** statement uses a relational expression as its control expression, which results in a Boolean value for the **`case`** statements. Did you mean *expression2*?
1414

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4153.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 37a15754-9dba-470b-adda-c4b888064b3e
88
---
99
# Compiler Warning (level 1) C4153
1010

11-
function/data pointer conversion in expression
11+
> function/data pointer conversion in expression
1212
1313
A function pointer is converted to or from a data pointer. This conversion is allowed under Microsoft extensions (/Ze) but not under ANSI C.

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4154.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 4511afeb-e893-4cc6-83b6-4c7a0477f76b
88
---
99
# Compiler Warning (level 1) C4154
1010

11-
deletion of an array expression; conversion to pointer supplied
11+
> deletion of an array expression; conversion to pointer supplied
1212
1313
You cannot use **`delete`** on an array, so the compiler converts the array to a pointer.
1414

0 commit comments

Comments
 (0)