Skip to content

Commit 20a92e1

Browse files
authored
Add blockquotes for error messages in range [C3051, C3080]
1 parent a1d2b3d commit 20a92e1

21 files changed

+21
-21
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 87480c42-1ceb-4775-8d20-88c54a7bb6a6
88
---
99
# Compiler Error C3052
1010

11-
'var' : variable doesn't appear in a data-sharing clause under a default(none) clause
11+
> 'var' : variable doesn't appear in a data-sharing clause under a default(none) clause
1212
1313
If [default(none)](../../parallel/openmp/reference/openmp-clauses.md#default-openmp) is used, any variable used in the structured block must be explicitly specified as either [shared](../../parallel/openmp/reference/openmp-clauses.md#shared-openmp) or [private](../../parallel/openmp/reference/openmp-clauses.md#private-openmp).
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: ab9a25f3-e341-4f6e-8e69-069b4a963a64
88
---
99
# Compiler Error C3053
1010

11-
'symbol' : 'threadprivate' is only valid for global or static data items
11+
> 'symbol' : 'threadprivate' is only valid for global or static data items
1212
1313
Symbols passed to [threadprivate](../../parallel/openmp/reference/openmp-directives.md#threadprivate) must either be global or static.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 60446ee0-18dd-48fc-9059-f0a14229dce8
88
---
99
# Compiler Error C3055
1010

11-
'symbol' : symbol cannot be referenced before it is used in 'threadprivate' directive
11+
> 'symbol' : symbol cannot be referenced before it is used in 'threadprivate' directive
1212
1313
A symbol was referenced and then used in a [threadprivate](../../parallel/openmp/reference/openmp-directives.md#threadprivate) clause, which is not allowed.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 9500173d-870b-49b3-8e88-0ee93586d19a
88
---
99
# Compiler Error C3056
1010

11-
'symbol' : symbol is not in the same scope with 'threadprivate' directive
11+
> 'symbol' : symbol is not in the same scope with 'threadprivate' directive
1212
1313
A symbol used in a [threadprivate](../../parallel/openmp/reference/openmp-directives.md#threadprivate) clause must be in the same scope as the `threadprivate` clause.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: b0b2ba88-9c74-4bec-bf60-8fc72eade34c
88
---
99
# Compiler Error C3057
1010

11-
'symbol' : dynamic initialization of 'threadprivate' symbols is not currently supported
11+
> 'symbol' : dynamic initialization of 'threadprivate' symbols is not currently supported
1212
1313
The initialized value of a symbol used in a [threadprivate](../../parallel/openmp/reference/openmp-directives.md#threadprivate) clause must be known at compile time.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 669d08c8-0b58-4351-88aa-c6e6e1af481c
88
---
99
# Compiler Error C3058
1010

11-
'symbol' : symbol not declared as 'threadprivate' before it is used in the 'copyin' clause
11+
> 'symbol' : symbol not declared as 'threadprivate' before it is used in the 'copyin' clause
1212
1313
A symbol must first be declared [threadprivate](../../parallel/openmp/reference/openmp-directives.md#threadprivate) before it can be used in a [copyin](../../parallel/openmp/reference/openmp-clauses.md#copyin) clause.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 57220324-8286-4cab-a1ab-45385eb1eae0
88
---
99
# Compiler Error C3059
1010

11-
'var' : 'threadprivate' symbol cannot be used in the 'clause' clause
11+
> 'var' : 'threadprivate' symbol cannot be used in the 'clause' clause
1212
1313
A [threadprivate](../../parallel/openmp/reference/openmp-directives.md#threadprivate) symbol was used in a clause.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 6282bb92-0546-4b59-9435-d3840bf93bdb
88
---
99
# Compiler Error C3060
1010

11-
'member' : a friend function may not be defined inside a class using a qualified name (it may only be declared)
11+
> 'member' : a friend function may not be defined inside a class using a qualified name (it may only be declared)
1212
1313
A friend function was defined using a qualified name, which is not allowed.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 78632e6d-255f-42c3-b124-31a9194ff86d
88
---
99
# Compiler Error C3062
1010

11-
'enum': enumerator requires value since the underlying type is 'type'
11+
> 'enum': enumerator requires value since the underlying type is 'type'
1212
1313
You can specify an underlying type for an enumeration. However, some types require you to assign values to each enumerator.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 0ecf6f1f-e4a7-487a-9fd5-79d8ac470001
88
---
99
# Compiler Error C3063
1010

11-
operator 'operator': all operands must have the same enumeration type
11+
> operator 'operator': all operands must have the same enumeration type
1212
1313
When using operators on enumerators, both operands must be of the enumeration type. For more information, see [How to: Define and consume enums in C++/CLI](../../dotnet/how-to-define-and-consume-enums-in-cpp-cli.md).
1414

0 commit comments

Comments
 (0)