Skip to content

Commit f19c659

Browse files
authored
Add blockquotes for error messages in range [C2941, C2980]
1 parent f0df71c commit f19c659

21 files changed

+21
-21
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: be640257-7017-45d1-986a-9fe8caab52f3
88
---
99
# Compiler Error C2945
1010

11-
explicit instantiation does not refer to a template-class specialization
11+
> explicit instantiation does not refer to a template-class specialization
1212
1313
You cannot explicitly instantiate something that is not templated.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: c86dfbfc-7702-4f09-8a53-d205710e99c2
88
---
99
# Compiler Error C2946
1010

11-
explicit instantiation; 'class' is not a template-class specialization
11+
> explicit instantiation; 'class' is not a template-class specialization
1212
1313
You cannot explicitly instantiate a nontemplated class.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 6c056f62-ec90-4883-8a67-aeeb6ec13546
88
---
99
# Compiler Error C2947
1010

11-
expecting '>' to terminate construct, found 'syntax'
11+
> expecting '>' to terminate construct, found 'syntax'
1212
1313
A generic or template argument list may not have been terminated correctly.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 780c6ed3-43a0-4112-8d00-b7bf79086c05
88
---
99
# Compiler Error C2948
1010

11-
explicit instantiation; storage class specifier 'specifier' not permitted on specialization
11+
> explicit instantiation; storage class specifier 'specifier' not permitted on specialization
1212
1313
You cannot use storage-class specifiers (such as **`extern`**) in a specialization of a template class that was previously explicitly instantiated.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: c6f95aa2-c894-425b-a51c-d40d70c8daa1
88
---
99
# Compiler Error C2951
1010

11-
type declarations are only permitted at global, namespace, or class scope
11+
> type declarations are only permitted at global, namespace, or class scope
1212
1313
You cannot declare a generic or template class outside global or namespace scope. If you make your generic or template declarations in an include file, make sure the include file is at global scope.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: a40e18a2-d02c-4511-854f-6c6fd6789a1a
88
---
99
# Compiler Error C2952
1010

11-
'declaration' : type declaration missing template parameter list
11+
> 'declaration' : type declaration missing template parameter list
1212
1313
A template declaration was ill formed.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 8dbcfa24-8296-4e40-bdc4-5526c07d8892
88
---
99
# Compiler Error C2953
1010

11-
'identifier' : class template has already been defined
11+
> 'identifier' : class template has already been defined
1212
1313
Check the source file and include files for other definitions.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 77709fb6-d69b-46fd-a62f-e8564563d01b
88
---
99
# Compiler Error C2955
1010

11-
'identifier' : use of class template or alias generic requires template or generic argument list
11+
> 'identifier' : use of class template or alias generic requires template or generic argument list
1212
1313
You cannot use a class template or class generic as an identifier without a template or generic argument list.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 9cb4526f-4af8-47e9-b786-56192627ca72
88
---
99
# Compiler Error C2957
1010

11-
'delim' : invalid left delimiter : expected '<'
11+
> 'delim' : invalid left delimiter : expected '<'
1212
1313
A generic class was ill formed.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 332bf6d3-7cd1-4b1a-8ddb-d4a8cbf01115
88
---
99
# Compiler Error C2958
1010

11-
the left delimiter found at 'location' was not matched correctly
11+
> the left delimiter found at 'location' was not matched correctly
1212
1313
A delimiter is not properly matched.
1414

0 commit comments

Comments
 (0)