Skip to content

Commit 6300bc0

Browse files
authored
Add blockquotes for warning messages in range [C4000, C4040]
1 parent dda89e0 commit 6300bc0

22 files changed

+22
-22
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 7f2dc79a-9fcb-4d5b-be61-120d9cb487ad
88
---
99
# Compiler Warning (level 1) C4005
1010

11-
'identifier' : macro redefinition
11+
> 'identifier' : macro redefinition
1212
1313
The macro identifier is defined twice. The compiler uses the second macro definition.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: f1a59819-0fd2-4361-8e3a-99e4b514b8e1
88
---
99
# Compiler Warning (level 1) C4006
1010

11-
\#undef expected an identifier
11+
> #undef expected an identifier
1212
1313
The `#undef` directive did not specify an identifier to undefine. The directive is ignored. To resolve the warning, be sure to specify an identifier. The following sample generates C4006:
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: d607a9ff-8f8f-45c0-b07b-3b2f439e5485
88
---
99
# Compiler Warning (level 1) C4010
1010

11-
single-line comment contains line-continuation character
11+
> single-line comment contains line-continuation character
1212
1313
A single-line comment, which is introduced by //, contains a backslash (\\) that serves as a line-continuation character. The compiler considers the next line to be a continuation and treats it as a comment.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 7242ab90-c869-482f-8152-46728575837e
88
---
99
# Compiler Warning (level 1) C4015
1010

11-
'identifier' : type of bit field must be integral
11+
> 'identifier' : type of bit field must be integral
1212
1313
The bit field is not declared as an integer type. The compiler assumes the base type of the bit field to be unsigned. Bit fields must be declared as unsigned integer types.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 8c4cd6be-9371-4c8c-b0ff-a5ad367bbab0
88
---
99
# Compiler Warning (level 1) C4020
1010

11-
'function' : too many actual parameters
11+
> 'function' : too many actual parameters
1212
1313
The number of actual parameters in a function call exceeds the number of formal parameters in the function prototype or definition. The compiler passes the extra actual parameters according to the calling convention of the function.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 9586ca84-4b40-4602-91a4-2e2415b1ab63
88
---
99
# Compiler Warning (level 1) C4022
1010

11-
'function' : pointer mismatch for actual parameter 'number'
11+
> 'function' : pointer mismatch for actual parameter 'number'
1212
1313
The pointer type of the actual parameter differs from the pointer type of the corresponding formal parameter. The actual parameter is passed without change.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: f6cb1b70-686a-4747-a01c-de673208209a
88
---
99
# Compiler Warning (level 1) C4024
1010

11-
'function' : different types for formal and actual parameter 'number'
11+
> 'function' : different types for formal and actual parameter 'number'
1212
1313
Corresponding formal and actual parameters have different types. The compiler passes the actual parameter without change. The receiving function converts the parameter type to the type expected.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: c4f6a651-0641-4446-973e-8290065e49ad
88
---
99
# Compiler Warning (level 1) C4025
1010

11-
'number' : based pointer passed to function with variable arguments: parameter number
11+
> 'number' : based pointer passed to function with variable arguments: parameter number
1212
1313
Passing a based pointer to a function with variable arguments causes the pointer to be normalized, with unpredictable results. Do not pass based pointers to functions with variable arguments.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 2c8ff616-8d7f-4784-8037-77f8b6a67698
88
---
99
# Compiler Warning (level 1) C4026
1010

11-
function declared with formal parameter list
11+
> function declared with formal parameter list
1212
1313
The function declaration has formal parameters, but the function definition does not. Subsequent calls to this function assume that the function takes no parameters.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: c3e8b70b-e870-416c-a285-bba5f71dbfc6
88
---
99
# Compiler Warning (level 1) C4028
1010

11-
formal parameter 'number' different from declaration
11+
> formal parameter 'number' different from declaration
1212
1313
The type of the formal parameter does not agree with the corresponding parameter in the declaration. The type in the original declaration is used.
1414

0 commit comments

Comments
 (0)