Skip to content

Commit 81c5efe

Browse files
authored
Add blockquotes for error messages in range [C3351, C3380]
1 parent 4167c4c commit 81c5efe

22 files changed

+22
-22
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: c021bbbe-1067-4f51-af4f-940d2b792eb5
88
---
99
# Compiler Error C3351
1010

11-
'object' : delegate constructor: second argument must be address of a static member function or global function
11+
> 'object' : delegate constructor: second argument must be address of a static member function or global function
1212
1313
The compiler expected the address of a function declared **`static`**.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: f233bed7-474e-425f-aad2-7801578169d4
88
---
99
# Compiler Error C3352
1010

11-
'function' : the specified function does not match the delegate type 'type'
11+
> 'function' : the specified function does not match the delegate type 'type'
1212
1313
The parameter lists for `function` and the delegate do not match.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 5699c04b-d504-46ce-bf71-c200318fed71
88
---
99
# Compiler Error C3353
1010

11-
'delegate' : a delegate can only be created from a global function or a member function of a managed or WinRT type
11+
> 'delegate' : a delegate can only be created from a global function or a member function of a managed or WinRT type
1212
1313
Delegates, declared with the [delegate](../../extensions/delegate-cpp-component-extensions.md) keyword, can only be declared at global scope.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 185de401-231e-4999-a149-172ee4c69d84
88
---
99
# Compiler Error C3354
1010

11-
'function' : the function used to create a delegate cannot have return type 'type'
11+
> 'function' : the function used to create a delegate cannot have return type 'type'
1212
1313
The following types are invalid as return types for a **`delegate`**:
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 6c1094f6-ac85-480a-b78b-e92fcf38641a
88
---
99
# Compiler Error C3356
1010

11-
'attribute': cannot call a multicast attribute with a fully qualified name
11+
> 'attribute': cannot call a multicast attribute with a fully qualified name
1212
1313
An attribute that is processed by more than one process, for example, the compiler and ATL provider, was specified incorrectly.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 180b93df-e78f-441a-91fb-1594c681f7f0
88
---
99
# Compiler Error C3358
1010

11-
'symbol': symbol not found
11+
> 'symbol': symbol not found
1212
1313
The required symbol was not found.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 6acf983a-dbb6-422b-b045-a34bb4ba6761
88
---
99
# Compiler Error C3360
1010

11-
'string': cannot create name
11+
> 'string': cannot create name
1212
1313
The value that was passed to the [uuid](../../windows/attributes/uuid-cpp-attributes.md) attribute was not valid.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 41aa922f-608e-4f7a-ba66-451fc1161935
88
---
99
# Compiler Error C3363
1010

11-
'type' : 'typeid' can only be applied to a type
11+
> 'type' : 'typeid' can only be applied to a type
1212
1313
The [typeid](../../extensions/typeid-cpp-component-extensions.md) operator was used incorrectly.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 98654741-60fe-4472-a6af-e580f8c0a6e1
88
---
99
# Compiler Error C3364
1010

11-
'delegate': delegate constructor: argument must be pointer to member function of managed class or global function
11+
> 'delegate': delegate constructor: argument must be pointer to member function of managed class or global function
1212
1313
The second parameter of the delegate's constructor takes either the address of a member function or the address of a static member function of any class. Both are treated as simple addresses.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 875ec3a4-522c-4e3d-9b67-48808b857f6d
88
---
99
# Compiler Error C3365
1010

11-
operator 'operator' : differing operands of type 'type1' and 'type2'
11+
> operator 'operator' : differing operands of type 'type1' and 'type2'
1212
1313
An attempt was made to compose delegates with different types. See [How to: Define and Use Delegates (C++/CLI)](../../dotnet/how-to-define-and-use-delegates-cpp-cli.md) for more information about delegates.
1414

0 commit comments

Comments
 (0)