Skip to content

Commit b286800

Browse files
authored
Add blockquotes for error messages in range [C3741, C3800]
1 parent 1a7e1a4 commit b286800

25 files changed

+25
-25
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: ed311315-cc32-49c9-97fa-01b293d81526
88
---
99
# Compiler Error C3741
1010

11-
'class': must be a coclass when the 'layout_dependent' parameter of event_receiver = true
11+
> 'class': must be a coclass when the 'layout_dependent' parameter of event_receiver = true
1212
1313
When `layout_dependent=true` for an [event_receiver](../../windows/attributes/event-receiver.md) class, then the class must also have the [coclass](../../windows/attributes/coclass.md) attribute.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 7ca9a76e-7b60-46d1-ab8b-18600cf1a306
88
---
99
# Compiler Error C3743
1010

11-
can only hook/unhook an entire interface when the 'layout_dependent' parameter of event_receiver is true
11+
> can only hook/unhook an entire interface when the 'layout_dependent' parameter of event_receiver is true
1212
1313
The [__unhook](../../cpp/unhook.md) function varies in the number of parameters that it takes based on the value passed to the `layout_dependent` parameter in the [event_receiver](../../windows/attributes/event-receiver.md) class.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: a447d050-80d1-406a-9a6e-f15c527d717c
88
---
99
# Compiler Error C3744
1010

11-
__unhook must have at least 3 arguments for managed events
11+
> __unhook must have at least 3 arguments for managed events
1212
1313
The [`__unhook`](../../cpp/unhook.md) function must take three parameters when used in a program that is compiled for Managed Extensions for C++.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 1e64aec5-7e53-47e5-bc7d-3905230cfc66
88
---
99
# Compiler Error C3745
1010

11-
'function': only an event can be 'raised'
11+
> 'function': only an event can be 'raised'
1212
1313
Only a function defined with the [__event](../../cpp/event.md) keyword can be passed to the [__raise](../../cpp/raise.md) keyword.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: a9a4be67-5d9c-4dcc-9ae9-baae46cbecde
88
---
99
# Compiler Error C3747
1010

11-
missing default type parameter : parameter param
11+
> missing default type parameter : parameter param
1212
1313
Generic or template parameters with default values cannot be followed in the parameter list by parameters that do not have default values.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 6fe71a0a-dd93-4ce6-9729-b9616360cf34
88
---
99
# Compiler Error C3748
1010

11-
'interface': managed interfaces may not fire events
11+
> 'interface': managed interfaces may not fire events
1212
1313
The [__event](../../cpp/event.md) keyword cannot appear inside an interface.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 3d26b468-4757-41b8-b5a2-78022a5295fb
88
---
99
# Compiler Error C3749
1010

11-
'attribute': a custom attribute may not be used inside a function
11+
> 'attribute': a custom attribute may not be used inside a function
1212
1313
A custom attribute cannot be used inside a function. For more information on custom attributes, see the topic [attribute](../../windows/attributes/attribute.md).
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 1ac81d85-0f5a-4f39-95b6-42fd43cb18d5
88
---
99
# Compiler Error C3752
1010

11-
'attribute class': cannot classify attribute; 'keyword' should not be used in this context
11+
> 'attribute class': cannot classify attribute; 'keyword' should not be used in this context
1212
1313
A user-defined attribute was applied incorrectly.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: a5b99e28-796c-4107-a673-97c2ae3bb2b9
88
---
99
# Compiler Error C3753
1010

11-
a generic property is not allowed
11+
> a generic property is not allowed
1212
1313
Generic parameter lists can only appear on managed classes, structs, or functions.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 14b877bc-9277-40ec-af1c-196a58b45f10
88
---
99
# Compiler Error C3754
1010

11-
delegate constructor: member function 'function' cannot be called on an instance of type 'type'
11+
> delegate constructor: member function 'function' cannot be called on an instance of type 'type'
1212
1313
A call was made to a function through a pointer to a type that does not contain the function.
1414

0 commit comments

Comments
 (0)