Skip to content

Commit 8ccf0cc

Browse files
authored
Add blockquotes for warning messages in range [C4521, C4560]
1 parent dda89e0 commit 8ccf0cc

24 files changed

+24
-24
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 490f8916-5fdc-4cad-b412-76c3382a5976
88
---
99
# Compiler Warning (level 1) C4526
1010

11-
'function' : static member function cannot override virtual function 'virtual function'override ignored, virtual function will be hidden
11+
> 'function' : static member function cannot override virtual function 'virtual function'override ignored, virtual function will be hidden
1212
1313
The static member function meets the criteria to override the virtual function, which makes the member function both virtual and static.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 8085e748-5f4d-43c2-b06d-eaf794edbf72
88
---
99
# Compiler Warning (level 1) C4540
1010

11-
dynamic_cast used to convert to inaccessible or ambiguous base; run-time test will fail ('type1' to 'type2')
11+
> dynamic_cast used to convert to inaccessible or ambiguous base; run-time test will fail ('type1' to 'type2')
1212
1313
You used **`dynamic_cast`** to convert from one type to another. The compiler determined that the cast would always fail (return **NULL**) because a base class is inaccessible (**`private`**, for instance) or ambiguous (appears more than once in the class hierarchy, for instance).
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 11ee04df-41ae-435f-af44-881e801315a8
88
---
99
# Compiler Warning (level 1) C4544
1010

11-
'declaration': Default template argument ignored on this template declaration
11+
> 'declaration': Default template argument ignored on this template declaration
1212
1313
A default template argument was specified in an incorrect location and was ignored. A default template argument for a class template can only be specified in the declaration or definition of the class template and not on a member of the class template.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 43f8f34f-ed46-4661-95c0-c588c577ff73
88
---
99
# Compiler Warning (level 1) C4545
1010

11-
expression before comma evaluates to a function which is missing an argument list
11+
> expression before comma evaluates to a function which is missing an argument list
1212
1313
The compiler detected an ill-formed comma expression.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 071e1709-3841-46c1-8e71-96109cd22041
88
---
99
# Compiler Warning (level 1) C4546
1010

11-
function call before comma missing argument list
11+
> function call before comma missing argument list
1212
1313
The compiler detected an ill-formed comma expression.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 3edf1c2e-c0d5-444d-ae83-44a7cce24bb2
88
---
99
# Compiler Warning (level 1) C4547
1010

11-
'operator' : operator before comma has no effect; expected operator with side-effect
11+
> 'operator' : operator before comma has no effect; expected operator with side-effect
1212
1313
The compiler detected an ill-formed comma expression.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 2cee817e-e463-4d90-bbd2-de120d48c101
88
---
99
# Compiler Warning (level 1) C4548
1010

11-
expression before comma has no effect; expected expression with side-effect
11+
> expression before comma has no effect; expected expression with side-effect
1212
1313
The compiler detected an ill-formed comma expression.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 81a07676-625b-4f58-9b0c-3ee22830b04a
88
---
99
# Compiler Warning (level 1) C4549
1010

11-
'operator' : operator before comma has no effect; did you intend 'operator'?
11+
> 'operator' : operator before comma has no effect; did you intend 'operator'?
1212
1313
The compiler detected an ill-formed comma expression.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: f902b4ed-5f17-48ea-b693-92f4fb8c8054
88
---
99
# Compiler Warning (level 1) C4550
1010

11-
expression evaluates to a function which is missing an argument list
11+
> expression evaluates to a function which is missing an argument list
1212
1313
A dereferenced pointer to a function is missing an argument list.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 458b59bd-e2d7-425f-9ba6-268ff200424f
88
---
99
# Compiler Warning (level 1) C4551
1010

11-
function call missing argument list
11+
> function call missing argument list
1212
1313
A function call must include the open and close parentheses after the function name even if the function takes no parameters.
1414

0 commit comments

Comments
 (0)