Skip to content

Commit 0e4f92d

Browse files
authored
Add blockquotes for error messages in range [C3851, C3890]
1 parent dda89e0 commit 0e4f92d

21 files changed

+21
-21
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 194e5c5e-0dfb-414e-86db-791c11eb610c
88
---
99
# Compiler Error C3852
1010

11-
'member' having type 'type': aggregate initialization could not initialize this member
11+
> 'member' having type 'type': aggregate initialization could not initialize this member
1212
1313
An attempt was made to assign a default initialization as part of an aggregate initialization to a data member that cannot receive a default initialization in an aggregate initialization.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 5b71805d-52b4-44ec-80ae-37c68d876f6a
88
---
99
# Compiler Error C3853
1010

11-
'=': re-initializing a reference or assignment through a reference-to-function is illegal
11+
> '=': re-initializing a reference or assignment through a reference-to-function is illegal
1212
1313
Cannot assign to a reference through a function because functions are not lvalues.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 32a9ead0-c6c7-485a-8802-c7b1fe921d3a
88
---
99
# Compiler Error C3854
1010

11-
expression to left of '=' evaluates to a function. Cannot assign to a function (a function is not an l-value)
11+
> expression to left of '=' evaluates to a function. Cannot assign to a function (a function is not an l-value)
1212
1313
A reference cannot be reinitialized. Dereferencing a reference to a function yields a function, which is an rvalue, to which you cannot assign. Therefore, you cannot assign through a reference to a function.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: ed90f8c0-4154-4243-b066-493913df5727
88
---
99
# Compiler Error C3855
1010

11-
'class': type parameter 'param' is incompatible with the declaration
11+
> 'class': type parameter 'param' is incompatible with the declaration
1212
1313
The compiler found nontype template or generic parameters with different names. This can occur when a specified template parameter in the definition of a template specialization is incompatible with its declaration.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 242d9322-c325-4f20-be58-b2be6da56d60
88
---
99
# Compiler Error C3856
1010

11-
'type': class is not a class type
11+
> 'type': class is not a class type
1212
1313
The most common cause for this error is when there are more generic or template parameter lists at the point of definition than there were at the point of declaration.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 9f746d1e-9708-4945-bc29-3150d5371d3c
88
---
99
# Compiler Error C3857
1010

11-
'type': multiple type parameter lists are not allowed
11+
> 'type': multiple type parameter lists are not allowed
1212
1313
More than one template or generic was specified for the same type, which is not allowed.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 46e178d5-a55f-4ac6-a9dc-561fbcba5c1f
88
---
99
# Compiler Error C3858
1010

11-
'type': cannot be redeclared in current scope
11+
> 'type': cannot be redeclared in current scope
1212
1313
The type cannot be declared twice in the same scope.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 1fb5110d-594e-4f1c-8773-888233af1313
88
---
99
# Compiler Error C3860
1010

11-
type argument list following class type name must list parameters in the order used in type parameter list
11+
> type argument list following class type name must list parameters in the order used in type parameter list
1212
1313
A generic or template argument list was ill formed.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 9bc62bb0-4fb8-4856-a5cf-c7cb4029a596
88
---
99
# Compiler Error C3865
1010

11-
'calling_convention' : can only be used on native member functions
11+
> 'calling_convention' : can only be used on native member functions
1212
1313
A calling convention was used on a function that was either a global function or on a managed member function. The calling convention can only be used on a native (not managed) member function.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 685870af-2440-4cdf-a6cb-284a5b96ef9d
88
---
99
# Compiler Error C3866
1010

11-
function call missing argument list
11+
> function call missing argument list
1212
1313
Inside a nonstatic member function, a destructor or finalizer call did not have an argument list.
1414

0 commit comments

Comments
 (0)