Skip to content

Commit b080dbf

Browse files
authored
Add blockquotes for error messages in range [C2821, C2850]
1 parent 82d1abf commit b080dbf

18 files changed

+18
-18
lines changed

docs/error-messages/compiler-errors-2/compiler-error-c2821.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: e8d71988-a968-4484-94db-e8c3bad74a4a
88
---
99
# Compiler Error C2821
1010

11-
first formal parameter to 'operator new' must be 'unsigned int'
11+
> first formal parameter to 'operator new' must be 'unsigned int'
1212
1313
The first formal parameter of the [operator new](../../standard-library/new-operators.md#op_new) must be an unsigned **`int`**.
1414

docs/error-messages/compiler-errors-2/compiler-error-c2824.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 5bd865f7-e0af-404e-80fe-e2b798b44a59
88
---
99
# Compiler Error C2824
1010

11-
return type for 'operator new' must be 'void *'
11+
> return type for 'operator new' must be 'void *'
1212
1313
With non-based pointers, overloads of operator `new` must return `void *`.
1414

docs/error-messages/compiler-errors-2/compiler-error-c2825.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: c832f1c1-5184-4fc2-9356-12b21daa7af3
88
---
99
# Compiler Error C2825
1010

11-
var : must be a class or namespace when followed by '::'
11+
> var : must be a class or namespace when followed by '::'
1212
1313
An unsuccessful attempt was made to form a qualified name.
1414

docs/error-messages/compiler-errors-2/compiler-error-c2827.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: cb3e5814-0c92-40e4-b620-98578ae3003a
88
---
99
# Compiler Error C2827
1010

11-
'operator operator' cannot be globally overridden with unary form
11+
> 'operator operator' cannot be globally overridden with unary form
1212
1313
The operator cannot have a unary form outside of an object.
1414

docs/error-messages/compiler-errors-2/compiler-error-c2828.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: d8df6ed4-5954-46c2-b59b-52881d4e923d
88
---
99
# Compiler Error C2828
1010

11-
'operator operator' cannot be globally overridden with binary form
11+
> 'operator operator' cannot be globally overridden with binary form
1212
1313
The operator cannot have a binary form outside of an object.
1414

docs/error-messages/compiler-errors-2/compiler-error-c2829.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: b3bfecb8-c8c1-45fd-bb85-4b42a6b8ed2b
88
---
99
# Compiler Error C2829
1010

11-
'operator operator' cannot have a variable parameter list
11+
> 'operator operator' cannot have a variable parameter list
1212
1313
Only two operators can take variable parameter lists:
1414

docs/error-messages/compiler-errors-2/compiler-error-c2830.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 91607d2d-6aab-4c1b-b253-a7b8ec37760e
88
---
99
# Compiler Error C2830
1010

11-
only placement parameters to 'operator new' can have default values
11+
> only placement parameters to 'operator new' can have default values
1212
1313
The standard formal parameters for [operator new](../../standard-library/new-operators.md#op_new) cannot have default values. Only user-defined placement parameters can specify defaults.

docs/error-messages/compiler-errors-2/compiler-error-c2831.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: c8c04288-0889-4265-a077-17f94cbcdcc9
88
---
99
# Compiler Error C2831
1010

11-
'operator operator' cannot have default parameters
11+
> 'operator operator' cannot have default parameters
1212
1313
Only three operators can have default parameters:
1414

docs/error-messages/compiler-errors-2/compiler-error-c2835.md

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

10-
user-defined conversion 'type' takes no formal parameters
10+
> user-defined conversion 'type' takes no formal parameters
1111
1212
User-defined type conversions cannot take formal parameters.
1313

docs/error-messages/compiler-errors-2/compiler-error-c2838.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 176b2ad6-7a84-4019-b97e-328866054457
88
---
99
# Compiler Error C2838
1010

11-
'member' : illegal qualified name in member declaration
11+
> 'member' : illegal qualified name in member declaration
1212
1313
A class, structure, or union uses a fully qualified name to redeclare a member of another class, structure, or union.
1414

0 commit comments

Comments
 (0)