Skip to content

Commit 93d6acf

Browse files
authored
Add blockquotes for error messages in range [C3281, C3350]
1 parent 4167c4c commit 93d6acf

25 files changed

+25
-25
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: bac2ac89-c360-4c24-bb81-c20c62ece9ba
88
---
99
# Compiler Error C3282
1010

11-
generic parameter lists can only appear on managed or WinRTclasses, structs, or functions
11+
> generic parameter lists can only appear on managed or WinRTclasses, structs, or functions
1212
1313
A generic parameter list was used incorrectly. For more information, see [Generics](../../extensions/generics-cpp-component-extensions.md).
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: c51d912c-cde3-4928-904e-26734c8954ce
88
---
99
# Compiler Error C3283
1010

11-
'type' : an interface cannot have an instance constructor
11+
> 'type' : an interface cannot have an instance constructor
1212
1313
A CLR [interface](../../extensions/interface-class-cpp-component-extensions.md) cannot have an instance constructor. A static constructor is allowed.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: e582f316-e9db-4d27-9c70-fdfa737a9d5f
88
---
99
# Compiler Error C3284
1010

11-
the constraints for generic parameter 'parameter' of function 'function' must match the constraints for generic parameter 'parameter' of function 'function'
11+
> the constraints for generic parameter 'parameter' of function 'function' must match the constraints for generic parameter 'parameter' of function 'function'
1212
1313
A virtual generic function must use the same constraints as a virtual function with the same name and set of arguments in the base class.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 04e8f210-d67e-4810-b153-e1efe2986c8f
88
---
99
# Compiler Error C3285
1010

11-
for each statement cannot operate on variables of type 'type'
11+
> for each statement cannot operate on variables of type 'type'
1212
1313
The `for each` statement repeats a group of embedded statements for each element in an array or an object collection.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: ed08a540-9751-46e1-9cbe-c51d6a49ffab
88
---
99
# Compiler Error C3288
1010

11-
'type' : illegal dereference of a handle type
11+
> 'type' : illegal dereference of a handle type
1212
1313
The compiler detected an illegal dereference of a handle type. You can dereference a handle type and assign it to a reference. For more information, see [Tracking Reference Operator](../../extensions/tracking-reference-operator-cpp-component-extensions.md).
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 3c1c623b-7fcf-43ab-a89a-8722532a8d29
88
---
99
# Compiler Error C3289
1010

11-
'property' : a trivial property cannot be indexed
11+
> 'property' : a trivial property cannot be indexed
1212
1313
A property was declared incorrectly. Accessors must be defined for an indexed property. See [property](../../extensions/property-cpp-component-extensions.md) for more information.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 0baf684b-1143-4953-ac99-a2fa267d8017
88
---
99
# Compiler Error C3290
1010

11-
'type' : a trivial property cannot have reference type
11+
> 'type' : a trivial property cannot have reference type
1212
1313
A property was declared incorrectly. When you declare a trivial property, the compiler creates a variable that the property will update, and it is not possible to have a tracking reference variable in a class.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: ed2e9f89-8dbc-4387-bc26-cc955e840858
88
---
99
# Compiler Error C3291
1010

11-
'default' : cannot be the name of a trivial property
11+
> 'default' : cannot be the name of a trivial property
1212
1313
A trivial property cannot be named **`default`**. See [property](../../extensions/property-cpp-component-extensions.md) for more information.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: ead485cc-5471-4e10-b361-300589ff5b70
88
---
99
# Compiler Error C3292
1010

11-
the cli namespace cannot be reopened
11+
> the cli namespace cannot be reopened
1212
1313
The cli namespace cannot be declared in your code. For more information, see [Platform, default, and cli Namespaces](../../extensions/platform-default-and-cli-namespaces-cpp-component-extensions.md).
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: b772cf98-52e0-4e24-be23-1f5d87d999ac
88
---
99
# Compiler Error C3293
1010

11-
'accessor': use 'default' to access the default property (indexer) for class 'type'
11+
> 'accessor': use 'default' to access the default property (indexer) for class 'type'
1212
1313
An indexed property was accessed incorrectly. See [How to: Use Properties in C++/CLI](../../dotnet/how-to-use-properties-in-cpp-cli.md) for more information.
1414

0 commit comments

Comments
 (0)