Skip to content

Commit 787e223

Browse files
authored
Add blockquotes for error messages in range [C2161, C2180]
1 parent a6b6fe9 commit 787e223

17 files changed

+17
-17
lines changed

docs/error-messages/compiler-errors-1/compiler-error-c2161.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: d6798821-13bb-4e60-924f-85f7bf955387
88
---
99
# Compiler Error C2161
1010

11-
'##' cannot occur at the end of a macro definition
11+
> '##' cannot occur at the end of a macro definition
1212
1313
A macro definition ended with a token-pasting operator (##).
1414

docs/error-messages/compiler-errors-1/compiler-error-c2163.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 6428d1e9-1ba1-46fc-bbf6-91d6fef2734c
88
---
99
# Compiler Error C2163
1010

11-
'function' : not available as an intrinsic function
11+
> 'function' : not available as an intrinsic function
1212
1313
An `intrinsic` or `function` pragma lists a function not available in intrinsic form. For example, certain intrinsics are not available when compiling a program that uses /clr programming.

docs/error-messages/compiler-errors-1/compiler-error-c2164.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 55df5024-68a8-45a8-ae6c-e6dba35318a2
88
---
99
# Compiler Error C2164
1010

11-
'function' : intrinsic function not declared
11+
> 'function' : intrinsic function not declared
1212
1313
An `intrinsic` pragma uses an undeclared function (only occurs with **/Oi**). Or, one of the compiler intrinsics was used without including its header file.
1414

docs/error-messages/compiler-errors-1/compiler-error-c2165.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: b108313b-b8cb-4dce-b2ec-f2b31c9cdc87
88
---
99
# Compiler Error C2165
1010

11-
'keyword' : cannot modify pointers to data
11+
> 'keyword' : cannot modify pointers to data
1212
1313
The **`__stdcall`**, **`__cdecl`**, or **`__fastcall`** keyword attempts to modify a pointer to data.
1414

docs/error-messages/compiler-errors-1/compiler-error-c2167.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 3de3de96-12cd-47df-b24e-34cc9747ef83
88
---
99
# Compiler Error C2167
1010

11-
'function' : too many actual parameters for intrinsic function
11+
> 'function' : too many actual parameters for intrinsic function
1212
1313
A reference to an `intrinsic` function has too many parameters.

docs/error-messages/compiler-errors-1/compiler-error-c2168.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 625e7dc3-ca74-4980-8268-8d5c0245e376
88
---
99
# Compiler Error C2168
1010

11-
'function' : too few actual parameters for intrinsic function
11+
> 'function' : too few actual parameters for intrinsic function
1212
1313
A reference to an `intrinsic` function has too few parameters.

docs/error-messages/compiler-errors-1/compiler-error-c2169.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 97f700bd-1044-46f5-b276-3d7570ee7708
88
---
99
# Compiler Error C2169
1010

11-
'function' : intrinsic function, cannot be defined
11+
> 'function' : intrinsic function, cannot be defined
1212
1313
A function definition appears for a function already declared `intrinsic`.

docs/error-messages/compiler-errors-1/compiler-error-c2170.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: d5c663f0-2459-4e11-a8bf-a52b62f3c71d
88
---
99
# Compiler Error C2170
1010

11-
'identifier' : not declared as a function, cannot be intrinsic
11+
> 'identifier' : not declared as a function, cannot be intrinsic
1212
1313
### To fix by checking the following possible causes
1414

docs/error-messages/compiler-errors-1/compiler-error-c2171.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: a80343b5-ab3f-4413-b6f1-3ce9d7e519e5
88
---
99
# Compiler Error C2171
1010

11-
'operator' : illegal on operands of type 'type'
11+
> 'operator' : illegal on operands of type 'type'
1212
1313
A unary operator is used with an invalid operand type.
1414

docs/error-messages/compiler-errors-1/compiler-error-c2172.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 31183ea7-858d-4273-932a-d865af7059b1
88
---
99
# Compiler Error C2172
1010

11-
'function' : actual parameter is not a pointer : parameter number
11+
> 'function' : actual parameter is not a pointer : parameter number
1212
1313
Parameter `number` is not a pointer. The function expects a pointer.

0 commit comments

Comments
 (0)