Skip to content

Commit 8e1983e

Browse files
authored
Add blockquotes for error messages in range [C2701, C2730]
1 parent 263eff1 commit 8e1983e

17 files changed

+17
-17
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 185797e2-55b5-4c11-8493-e70eb1d15a94
88
---
99
# Compiler Error C2704
1010

11-
'identifier' : __va_start intrinsic only allowed in varargs
11+
> 'identifier' : __va_start intrinsic only allowed in varargs
1212
1313
The `__va_start` intrinsic is used in a declaration for a function with a fixed number of arguments.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 3deaf45c-74da-4c9d-acc6-b82412720b74
88
---
99
# Compiler Error C2707
1010

11-
'identifier' : bad context for intrinsic function
11+
> 'identifier' : bad context for intrinsic function
1212
1313
Structured exception-handling intrinsics are invalid in certain contexts:
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: d52d3088-1141-42f4-829c-74755a7fcc3a
88
---
99
# Compiler Error C2708
1010

11-
'identifier' : actual parameters length in bytes differs from previous call or reference
11+
> 'identifier' : actual parameters length in bytes differs from previous call or reference
1212
1313
A [__stdcall](../../cpp/stdcall.md) function must be preceded by a prototype. Otherwise, the compiler interprets the first call to the function as a prototype and this error occurs when the compiler encounters a call that does not match.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: e66fc7e6-0e91-4b99-a6e0-fdb069b09fbc
88
---
99
# Compiler Error C2709
1010

11-
'identifier' : formal parameter's length in bytes differs from previous declaration
11+
> 'identifier' : formal parameter's length in bytes differs from previous declaration
1212
1313
The signature in a call to the specified function differs from the prototype.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: a2a6bb5b-86ad-4a6c-acd0-e2bef8464e0e
88
---
99
# Compiler Error C2710
1010

11-
'construct' : '__declspec(modifier)' can only be applied to a function returning a pointer
11+
> 'construct' : '__declspec(modifier)' can only be applied to a function returning a pointer
1212
1313
A function whose return value is a pointer is the only construct to which `modifier` can be applied.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 9df9f808-7419-4e63-abdd-e6538ff0871f
88
---
99
# Compiler Error C2711
1010

11-
'function' : this function cannot be compiled as managed, consider using #pragma unmanaged
11+
> 'function' : this function cannot be compiled as managed, consider using #pragma unmanaged
1212
1313
Some instructions will prevent the compiler from generating MSIL for the enclosing function.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: c81567a7-5b65-468f-aaf9-835f91e468e4
88
---
99
# Compiler Error C2715
1010

11-
'type' : cannot throw or catch this type
11+
> 'type' : cannot throw or catch this type
1212
1313
Value types are not valid arguments when using exception handling in managed code (see [Exception Handling](../../extensions/exception-handling-cpp-component-extensions.md) for more information).
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 78cc71f8-c142-46fc-9aed-970635d74f0c
88
---
99
# Compiler Error C2718
1010

11-
'parameter': actual parameter with __declspec(align('#')) won't be aligned
11+
> 'parameter': actual parameter with __declspec(align('#')) won't be aligned
1212
1313
The [align](../../cpp/align-cpp.md) **`__declspec`** modifier is not permitted on function parameters.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: ea6236d3-8286-45cc-9478-c84ad3dd3c8e
88
---
99
# Compiler Error C2719
1010

11-
'parameter': formal parameter with __declspec(align('#')) won't be aligned
11+
> 'parameter': formal parameter with __declspec(align('#')) won't be aligned
1212
1313
The [align](../../cpp/align-cpp.md) **`__declspec`** modifier is not permitted on function parameters. Function parameter alignment is controlled by the calling convention used. For more information, see [Calling Conventions](../../cpp/calling-conventions.md).
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 7a97823c-3ce1-4112-8253-fc1448685235
88
---
99
# Compiler Error C2721
1010

11-
'specifier' : storage-class specifier illegal between operator keyword and type
11+
> 'specifier' : storage-class specifier illegal between operator keyword and type
1212
1313
User-defined type conversions apply to all storage classes, so you cannot specify a storage class in a type conversion.

0 commit comments

Comments
 (0)