Skip to content

Commit c47a61b

Browse files
authored
Add blockquotes for error messages in range [C3011, C3030]
1 parent ff3bd5e commit c47a61b

19 files changed

+19
-19
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 24c3a917-ebff-4deb-9155-23adf6468531
88
---
99
# Compiler Error C3011
1010

11-
inline assembly not allowed directly within a parallel region
11+
> inline assembly not allowed directly within a parallel region
1212
1313
An `omp` parallel region cannot contain inline assembly instructions.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: f896777d-27e6-4b6d-baab-1567317f3374
88
---
99
# Compiler Error C3013
1010

11-
'clause' : clause may only appear once on OpenMP 'directive' directive
11+
> 'clause' : clause may only appear once on OpenMP 'directive' directive
1212
1313
A clause appeared twice on the same directive. Delete one occurrence of the clause.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: af1c5b0c-dbf9-4274-b06a-c6c2cdcf2a52
88
---
99
# Compiler Error C3014
1010

11-
expected a for loop following OpenMP 'directive' directive
11+
> expected a for loop following OpenMP 'directive' directive
1212
1313
It is an error for anything other than a **`for`** loop to immediately follow a `#pragma omp for` directive.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: d5e8e50b-7542-4b2d-8665-1b22072a5bc6
88
---
99
# Compiler Error C3015
1010

11-
initialization in OpenMP 'for' statement has improper form
11+
> initialization in OpenMP 'for' statement has improper form
1212
1313
A **`for`** loop in an OpenMP statement must be fully and explicitly specified.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 3423467e-e8bb-4f35-b4db-7925cafa74c1
88
---
99
# Compiler Error C3016
1010

11-
'var' : index variable in OpenMP 'for' statement must have signed integral type
11+
> 'var' : index variable in OpenMP 'for' statement must have signed integral type
1212
1313
The index variable in an OpenMP **`for`** statement must be a signed integral type.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 12ab2c2a-d0d2-4900-9cbf-39be0af590dd
88
---
99
# Compiler Error C3017
1010

11-
termination test in OpenMP 'for' statement has improper form
11+
> termination test in OpenMP 'for' statement has improper form
1212
1313
A **`for`** loop in an OpenMP statement must be fully and explicitly specified.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 685be45f-f116-43a8-a88d-05ab6616e2f1
88
---
99
# Compiler Error C3018
1010

11-
'var1' : OpenMP 'for' test or increment must use index variable 'var2'
11+
> 'var1' : OpenMP 'for' test or increment must use index variable 'var2'
1212
1313
A **`for`** loop in an OpenMP statement must use the same variable for its test and increment as it uses for its index.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 31a6d9b6-d29f-4499-9ad8-48dd751e87c7
88
---
99
# Compiler Error C3019
1010

11-
increment in OpenMP 'for' statement has improper form
11+
> increment in OpenMP 'for' statement has improper form
1212
1313
The increment part of an OpenMP **`for`** loop must use the index variable both on the left and right side of the operator.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: f625c7a3-afaa-4bd8-9c1b-51891b832f36
88
---
99
# Compiler Error C3020
1010

11-
'var' : index variable of OpenMP 'for' loop cannot be modified in loop body
11+
> 'var' : index variable of OpenMP 'for' loop cannot be modified in loop body
1212
1313
An OpenMP **`for`** loop may not modify the index (loop counter) in the body of the **`for`** loop.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 0cef6d97-e267-438a-ac8b-0daf5bbbc2cf
88
---
99
# Compiler Error C3021
1010

11-
'arg' : argument is empty on OpenMP directive 'directive'
11+
> 'arg' : argument is empty on OpenMP directive 'directive'
1212
1313
An argument is required for an OpenMP directive.
1414

0 commit comments

Comments
 (0)