Skip to content

Commit 4a99dd5

Browse files
authored
Add blockquotes for error messages in range [C3621, C3660]
1 parent 024e06a commit 4a99dd5

26 files changed

+26
-26
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 02836f78-0cf2-4947-b87e-710187d81014
88
---
99
# Compiler Error C3622
1010

11-
'class' : a class declared as 'keyword' cannot be instantiated
11+
> 'class' : a class declared as 'keyword' cannot be instantiated
1212
1313
An attempt was made to instantiate a class marked as [abstract](../../extensions/abstract-cpp-component-extensions.md). A class marked as **`abstract`** can be a base class, but it cannot be instantiated.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: a0341b45-062a-4f67-beb9-ba74201ed1ed
88
---
99
# Compiler Error C3623
1010

11-
'variable': bit fields are not supported in managed or WinRT types
11+
> 'variable': bit fields are not supported in managed or WinRT types
1212
1313
The use of bit fields is not permitted on variables in a managed or WinRT class.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: eaac6a4f-eb11-4e4d-ab12-124ba995c5cf
88
---
99
# Compiler Error C3624
1010

11-
'type': use of this type requires a reference to assembly 'assembly'
11+
> 'type': use of this type requires a reference to assembly 'assembly'
1212
1313
An assembly (reference) needed to compile your code was not specified; pass the assembly to the [#using](../../preprocessor/hash-using-directive-cpp.md) directive.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: fdf49f21-d6b1-42f4-9eec-23b04ae8b4aa
88
---
99
# Compiler Error C3625
1010

11-
'native_type': a native type cannot derive from a managed or WinRT type 'type'
11+
> 'native_type': a native type cannot derive from a managed or WinRT type 'type'
1212
1313
A native class cannot inherit from a managed or WinRT class. For more information, see [Classes and Structs](../../extensions/classes-and-structs-cpp-component-extensions.md).
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 43926e2b-1ba9-4a43-9343-c58449cbb336
88
---
99
# Compiler Error C3626
1010

11-
'keyword': '__event' keyword can only be used on COM interfaces, member functions and data members that are pointers to delegates
11+
> 'keyword': '__event' keyword can only be used on COM interfaces, member functions and data members that are pointers to delegates
1212
1313
A keyword was used incorrectly.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 905ad0a0-8c49-4187-b66e-b375f5a1fae5
88
---
99
# Compiler Error C3627
1010

11-
Only a value type can be boxed
11+
> Only a value type can be boxed
1212
1313
Only value classes can be boxed.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 0ff5a4a4-fcc9-47a0-a4d8-8af9cf2815f6
88
---
99
# Compiler Error C3628
1010

11-
'base class' : managed or WinRTclasses only support public inheritance
11+
> 'base class' : managed or WinRTclasses only support public inheritance
1212
1313
An attempt was made to use a managed or WinRT class as a [private](../../cpp/private-cpp.md) or [protected](../../cpp/protected-cpp.md) base class. A managed or WinRT class can only be used as a base class with [public](../../cpp/public-cpp.md) access.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 88cbd2d5-6fef-4940-be34-d8cbe816d3da
88
---
99
# Compiler Error C3631
1010

11-
'function': cannot overload managed or WinRT events
11+
> 'function': cannot overload managed or WinRT events
1212
1313
A managed or WinRT event cannot be overloaded.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: a04e3217-f5a1-4461-a1db-d69fd096d468
88
---
99
# Compiler Error C3632
1010

11-
'event': illegal style of event for construct
11+
> 'event': illegal style of event for construct
1212
1313
[__event](../../cpp/event.md) declarations are not valid in all constructs.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 7d65babf-2191-4d67-a69f-f5c4c2ddf946
88
---
99
# Compiler Error C3633
1010

11-
cannot define 'member' as a member of managed 'type'
11+
> cannot define 'member' as a member of managed 'type'
1212
1313
CLR reference class data members cannot be of a non-POD C++ type. You can only instantiate a POD native type in a CLR type. For example, a POD type cannot contain a copy constructor or an assignment operator.
1414

0 commit comments

Comments
 (0)