Skip to content

Commit e8176e8

Browse files
authored
Add blockquotes for error messages in range [C3161, C3190]
1 parent cc6f72e commit e8176e8

18 files changed

+18
-18
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 1fe2be85-a343-487b-8476-bf9e257eb29d
88
---
99
# Compiler Error C3161
1010

11-
'interface' : nesting class, struct, union or interface in an interface is illegal; nesting interface in a class, struct or union is illegal
11+
> 'interface' : nesting class, struct, union or interface in an interface is illegal; nesting interface in a class, struct or union is illegal
1212
1313
An [__interface](../../cpp/interface.md) can only appear at global scope or within a namespace. A class, struct, or union cannot appear in an interface.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 0d4c4a24-1456-4191-b7d8-c38cb7b17c32
88
---
99
# Compiler Error C3162
1010

11-
'type' : a reference type which has a destructor cannot be used as the type of static data member 'member'
11+
> 'type' : a reference type which has a destructor cannot be used as the type of static data member 'member'
1212
1313
The common language runtime cannot know when to run a user-defined destructor when the class also contains static member function.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 58c25fe7-8562-4a18-ad3f-487f081ff173
88
---
99
# Compiler Error C3167
1010

11-
Unable to initialize .NET Framework: make sure it is installed
11+
> Unable to initialize .NET Framework: make sure it is installed
1212
1313
The .NET Framework is not installed on this computer; install the .NET Framework.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 4c36fcfb-c351-48ff-b4eb-78d2aa1b4d55
88
---
99
# Compiler Error C3168
1010

11-
'type' : illegal underlying type for enum
11+
> 'type' : illegal underlying type for enum
1212
1313
The underlying type you specified for the **`enum`** type was not valid. The underlying type must be an integral C++ type or a corresponding CLR type.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: ca9a59d6-7df3-42f0-b028-c09d0af3ac2a
88
---
99
# Compiler Error C3170
1010

11-
cannot have different module identifiers in a project
11+
> cannot have different module identifiers in a project
1212
1313
[module](../../windows/attributes/module-cpp.md) attributes with different names were found in two of the files in a compilation. Only one unique `module` attribute can be specified per compilation.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 1ce26997-7ef1-4c9f-84da-003ea1a4251e
88
---
99
# Compiler Error C3171
1010

11-
'module': cannot specify different module attributes in a project
11+
> 'module': cannot specify different module attributes in a project
1212
1313
[module](../../windows/attributes/module-cpp.md) attributes with different parameter lists were found in two of the files in a compilation. Only one unique `module` attribute can be specified per compilation.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 1834e2fd-6036-4c33-aff2-b51bc7c99441
88
---
99
# Compiler Error C3172
1010

11-
'module_name': cannot specify different idl_module attributes in a project
11+
> 'module_name': cannot specify different idl_module attributes in a project
1212
1313
[idl_module](../../windows/attributes/idl-module.md) attributes with the same name but different `dllname` or `version` parameters were found in two of the files in a compilation. Only one unique `idl_module` attribute can be specified per compilation.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: edf79e10-e8cf-4f76-8d33-ab9d05e974e9
88
---
99
# Compiler Error C3173
1010

11-
version mismatch in idl merge
11+
> version mismatch in idl merge
1212
1313
This error occurs when an object file contains embedded idl that was generated with a previous version of the compiler. The compiler encodes a version number to ensure that the same compiler used to generate the idl content that is embedded in the .obj files is also the same compiler used to merge the embedded idl.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: fe6b3b5a-8196-485f-a45f-0b2e51df4086
88
---
99
# Compiler Error C3174
1010

11-
module attribute was not specified
11+
> module attribute was not specified
1212
1313
A program that uses Visual C++ attributes did not also use the [module](../../windows/attributes/module-cpp.md) attribute, which is required in any program that uses attributes.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 3f19d513-a05a-4b6c-806f-276fe5c36b90
88
---
99
# Compiler Error C3175
1010

11-
'function1' : cannot call a method of a managed type from unmanaged function 'function2'
11+
> 'function1' : cannot call a method of a managed type from unmanaged function 'function2'
1212
1313
Unmanaged functions cannot call member functions of managed classes.
1414

0 commit comments

Comments
 (0)