Skip to content

Commit 5704ddf

Browse files
authored
Add blockquotes for warning messages in range [C4081, C4120]
1 parent dda89e0 commit 5704ddf

22 files changed

+22
-22
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 6f656373-a080-4989-bbc9-e2f894b03293
88
---
99
# Compiler Warning (level 1) C4081
1010

11-
expected 'token1'; found 'token2'
11+
> expected 'token1'; found 'token2'
1212
1313
The compiler expected a different token in this context.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: e7d3344e-5645-4d56-8460-d1acc9145ada
88
---
99
# Compiler Warning (level 1) C4083
1010

11-
expected 'token'; found identifier 'identifier'
11+
> expected 'token'; found identifier 'identifier'
1212
1313
An identifier occurs in the wrong place in a **#pragma** statement.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 2bc6eb25-058f-4597-b351-fd69587b5170
88
---
99
# Compiler Warning (level 1) C4085
1010

11-
expected pragma parameter to be 'on' or 'off'
11+
> expected pragma parameter to be 'on' or 'off'
1212
1313
The pragma requires an **on** or **off** parameter. The pragma is ignored.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 9248831b-22bf-47af-8684-bfadb17e94fc
88
---
99
# Compiler Warning (level 1) C4086
1010

11-
expected pragma parameter to be '1', '2', '4', '8', or '16'
11+
> expected pragma parameter to be '1', '2', '4', '8', or '16'
1212
1313
The pragma parameter does not have the required value (1, 2, 4, 8, or 16).
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 546e4d57-5c8e-422c-8ef1-92657336dad5
88
---
99
# Compiler Warning (level 1) C4087
1010

11-
'function' : declared with 'void' parameter list
11+
> 'function' : declared with 'void' parameter list
1212
1313
The function declaration has no formal parameters, but the function call has actual parameters. Extra parameters are passed according to the calling convention of the function.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 9bab817c-16b2-4324-be5e-f9cbb06b702e
88
---
99
# Compiler Warning (level 1) C4088
1010

11-
'function' : pointer mismatch in actual parameter 'number', formal parameter 'number'
11+
> 'function' : pointer mismatch in actual parameter 'number', formal parameter 'number'
1212
1313
The corresponding formal and actual parameters have a different level of indirection. The actual parameter is passed without change. The called function interprets its value as a pointer.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 7c8f929b-9bf9-4063-9b7e-4affd98c1acc
88
---
99
# Compiler Warning (level 1) C4089
1010

11-
'function' : different types in actual parameter 'number', formal parameter 'number'
11+
> 'function' : different types in actual parameter 'number', formal parameter 'number'
1212
1313
The corresponding formal and actual parameters have different types. The actual parameter is passed without change. The function casts the actual parameter to the type specified in the function definition.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: baad469d-23d4-45aa-ad9c-305b32d61e9a
88
---
99
# Compiler Warning (level 1) C4090
1010

11-
'operation' : different 'modifier' qualifiers
11+
> 'operation' : different 'modifier' qualifiers
1212
1313
A variable used in an operation is defined with a specified modifier that prevents it from being modified without detection by the compiler. The expression is compiled without modification.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: abf3cca2-2f21-45d8-b025-6b513b00681e
88
---
99
# Compiler Warning (level 1) C4096
1010

11-
'a': interface is not a COM interface; will not be emitted to IDL
11+
> 'a': interface is not a COM interface; will not be emitted to IDL
1212
1313
An interface definition that you may have intended as a COM interface was not defined as a COM interface and therefore will not be emitted to the IDL file.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 2525be51-fac2-43b2-b57c-3bbf1a2268f7
88
---
99
# Compiler Warning (level 1) C4097
1010

11-
expected pragma parameter to be 'restore' or 'off'
11+
> expected pragma parameter to be 'restore' or 'off'
1212
1313
A pragma was passed an invalid value.
1414

0 commit comments

Comments
 (0)