Skip to content

Commit 8736f5b

Browse files
authored
Add blockquotes for error messages in range [C3251, C3280]
1 parent 4167c4c commit 8736f5b

18 files changed

+18
-18
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: aa9ad096-e9ac-41c7-8ad9-b966751c7c75
88
---
99
# Compiler Error C3252
1010

11-
'method' : cannot reduce accessibility of a virtual method in a managed or WinRT type
11+
> 'method' : cannot reduce accessibility of a virtual method in a managed or WinRT type
1212
1313
A class that implements a virtual method from a base class or any method from an interface cannot reduce the access of that method.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: da40be26-0f78-4730-8727-ad11cddf8869
88
---
99
# Compiler Error C3253
1010

11-
'function' : error with explicit override
11+
> 'function' : error with explicit override
1212
1313
An explicit override was specified incorrectly. For example, you cannot specify an implementation for an override that you also specify as pure. For more information, see [Explicit Overrides](../../extensions/explicit-overrides-cpp-component-extensions.md).
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 93427b10-fa72-4e43-80d1-1a6e122f9f40
88
---
99
# Compiler Error C3254
1010

11-
'explicit override' : class contains explicit override 'override' but does not derive from an interface that contains the function declaration
11+
> 'explicit override' : class contains explicit override 'override' but does not derive from an interface that contains the function declaration
1212
1313
When you [explicitly override](../../cpp/explicit-overrides-cpp.md) a method, the class that contains the override must derive, directly or indirectly, from the type that contains the function you are overriding.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 877ffca2-fd92-44b6-9060-6091b928b1c1
88
---
99
# Compiler Error C3255
1010

11-
'value type' : cannot dynamically allocate this value type object on native heap
11+
> 'value type' : cannot dynamically allocate this value type object on native heap
1212
1313
Instances of a value type (see [Classes and Structs](../../extensions/classes-and-structs-cpp-component-extensions.md)) that contain managed members can be created on the stack but not on the heap.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 3e74b9aa-de3c-4492-9331-ee73012b958b
88
---
99
# Compiler Error C3262
1010

11-
invalid array indexing: '#' dimension(s) specified for '#'-dimensional 'array type'
11+
> invalid array indexing: '#' dimension(s) specified for '#'-dimensional 'array type'
1212
1313
An array was improperly subscripted. The number of indices may not match the number of dimensions in the array.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 94ece687-2364-4f7a-8ebb-7afd3ae9d63d
88
---
99
# Compiler Error C3264
1010

11-
'class' : a class-constructor cannot have a return type
11+
> 'class' : a class-constructor cannot have a return type
1212
1313
Class constructors cannot have return types.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 10ab3e17-4a9f-4120-bab5-21473869b70f
88
---
99
# Compiler Error C3265
1010

11-
cannot declare a managed 'managed construct' in an unmanaged 'unmanaged construct'
11+
> cannot declare a managed 'managed construct' in an unmanaged 'unmanaged construct'
1212
1313
You cannot include a managed object in an unmanaged context.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 7375c099-acb7-42f6-898d-57cfefa010b8
88
---
99
# Compiler Error C3266
1010

11-
'class' : a class-constructor must have a 'void' parameter list
11+
> 'class' : a class-constructor must have a 'void' parameter list
1212
1313
Class-constructors in a class using /clr programming cannot take parameters.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: c575f067-244d-4dd5-bf58-9e7630ea58b7
88
---
99
# Compiler Error C3269
1010

11-
'function' : a member-function of a managed or WinRTtype cannot be declared with '...'
11+
> 'function' : a member-function of a managed or WinRTtype cannot be declared with '...'
1212
1313
Managed and WinRT class member functions cannot declare variable-length parameter lists.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 70e6e76b-7415-48f5-a61e-2ed50caf08e4
88
---
99
# Compiler Error C3270
1010

11-
'field': the FieldOffset attribute can only be used in the context of StructLayout(Explicit), in which case it is required
11+
> 'field': the FieldOffset attribute can only be used in the context of StructLayout(Explicit), in which case it is required
1212
1313
A field was marked with **FieldOffset**, which is only allowed when **StructLayout(Explicit)** is in effect.
1414

0 commit comments

Comments
 (0)