Skip to content

Commit ec3814b

Browse files
authored
Add blockquotes for error messages in range [C3221, C3250]
1 parent 4167c4c commit ec3814b

26 files changed

+26
-26
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 5624bde8-2fd0-4b8b-92ce-5dfbaf91cf93
88
---
99
# Compiler Error C3222
1010

11-
'parameter' : cannot declare default arguments for member functions of a managed or WinRT type or generic functions
11+
> 'parameter' : cannot declare default arguments for member functions of a managed or WinRT type or generic functions
1212
1313
It is not permitted to declare a method parameter with a default argument. An overloaded form of the method is one way to work around this issue. That is, define a method with the same name with no parameters and then initialize the variable in the method body.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 1f4380b4-0413-40db-a868-62f97babaf78
88
---
99
# Compiler Error C3223
1010

11-
'property' : you cannot apply 'typeid' to a property
11+
> 'property' : you cannot apply 'typeid' to a property
1212
1313
You cannot apply [typeid](../../extensions/typeid-cpp-component-extensions.md) to a property.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 129be22f-8f3e-4fc6-9ccd-d27d8ef91251
88
---
99
# Compiler Error C3224
1010

11-
'type' : no overloaded generic class takes 'number' generic type arguments
11+
> 'type' : no overloaded generic class takes 'number' generic type arguments
1212
1313
The compiler failed to find an appropriate overload.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: f5f66973-256e-4298-ac46-c87819cbde34
88
---
99
# Compiler Error C3225
1010

11-
generic type argument for 'arg' cannot be 'type', it must be a value type or handle type
11+
> generic type argument for 'arg' cannot be 'type', it must be a value type or handle type
1212
1313
The generic type argument was not of the correct type.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 636106ca-6f4e-4303-a6a0-8803221ec67d
88
---
99
# Compiler Error C3226
1010

11-
A template declaration is not allowed inside a generic declaration
11+
> A template declaration is not allowed inside a generic declaration
1212
1313
Use a generic declaration inside a generic class.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 7939c23a-96c8-43c2-89e9-f217d132d155
88
---
99
# Compiler Error C3227
1010

11-
'parameter' : cannot use 'keyword' to allocate a generic type
11+
> 'parameter' : cannot use 'keyword' to allocate a generic type
1212
1313
In order to instantiate a type, an appropriate constructor is required. However, the compiler is not able to ensure that an appropriate constructor is available.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 9015adf9-17b0-4312-b4a7-c1f33e4126f4
88
---
99
# Compiler Error C3228
1010

11-
'function' : generic type argument for 'param' cannot be 'type', it must be a valuetype or handle type
11+
> 'function' : generic type argument for 'param' cannot be 'type', it must be a valuetype or handle type
1212
1313
An incorrect type was passed as a generic type argument.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: f2d90923-aa8b-444f-ab10-1f37dbb864e1
88
---
99
# Compiler Error C3229
1010

11-
'type' : indirections on a generic type parameter are not allowed
11+
> 'type' : indirections on a generic type parameter are not allowed
1212
1313
You cannot use generic parameters with `*`, `^`, or `&`.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 5ec53f25-59f6-4801-81e7-7b68bf04994d
88
---
99
# Compiler Error C3230
1010

11-
'function' : template type argument for 'template' cannot contain a generic type parameter: 'param'
11+
> 'function' : template type argument for 'template' cannot contain a generic type parameter: 'param'
1212
1313
Templates are instantiated at compile time, but generics are instantiated at run time. Therefore, it is not possible to generate generic code that can call the template because the template cannot be instantiated at run time when the generic type is finally known.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: fe5dc352-e634-45fa-9534-3da176294c98
88
---
99
# Compiler Error C3231
1010

11-
'arg' : template type argument cannot use a generic type parameter
11+
> 'arg' : template type argument cannot use a generic type parameter
1212
1313
Templates are instantiated at compile time, but generics are instantiated at run time. Therefore, it is not possible to generate generic code that can call the template because the template cannot be instantiated at run time when the generic type is finally known.
1414

0 commit comments

Comments
 (0)