Skip to content

Commit 4804f2d

Browse files
authored
Add blockquotes for error messages in range [C1111, C1210]
1 parent d68011f commit 4804f2d

12 files changed

+12
-12
lines changed

docs/error-messages/compiler-errors-1/fatal-error-c1113.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 1c7c3ce7-2827-4822-9c63-0abc8615ea39
88
---
99
# Fatal Error C1113
1010

11-
\#using failed on 'file'
11+
> #using failed on 'file'
1212
1313
Only a file in the Microsoft Intermediate Language (MSIL) format can be passed to a [#using](../../preprocessor/hash-using-directive-cpp.md) directive. The [/clr](../../build/reference/clr-common-language-runtime-compilation.md) compiler option lets you create an MSIL output file. Other Visual Studio languages also produce MSIL files.

docs/error-messages/compiler-errors-1/fatal-error-c1120.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 34212b64-f4e5-4c55-9acc-6f6b2ab5f1c0
88
---
99
# Fatal Error C1120
1010

11-
call to GetProcAddress failed for 'function'
11+
> call to GetProcAddress failed for 'function'
1212
1313
This error indicates Visual C++ needs to be reinstalled.

docs/error-messages/compiler-errors-1/fatal-error-c1121.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: d16e51c5-4c50-4303-a028-ca60f7a3273c
88
---
99
# Fatal Error C1121
1010

11-
call to CryptoAPI failed
11+
> call to CryptoAPI failed
1212
1313
The compiler made a call to the CryptoAPI and the call failed. Reinstall Visual Studio and possibly reinstall the operating system.

docs/error-messages/compiler-errors-1/fatal-error-c1126.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: f22b26a6-8ad7-47cf-a237-196c8ea60aca
88
---
99
# Fatal Error C1126
1010

11-
'identifier' : automatic allocation exceeds size
11+
> 'identifier' : automatic allocation exceeds size
1212
1313
Space allocated for local variables of a function (plus a limited amount of space used by the compiler, such as an extra 20 bytes for swappable functions) exceeds the limit.
1414

docs/error-messages/compiler-errors-1/fatal-error-c1128.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 6f9580fd-ecef-48be-9780-dcf666704279
88
---
99
# Fatal Error C1128
1010

11-
number of sections exceeded object file format limit : compile with /bigobj
11+
> number of sections exceeded object file format limit : compile with /bigobj
1212
1313
An .obj file exceeded the number of allowable sections, a COFF object file format limitation.
1414

docs/error-messages/compiler-errors-1/fatal-error-c1190.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: dee2266d-6c40-4f6e-91db-f01e65f8d2bc
88
---
99
# Fatal Error C1190
1010

11-
managed targeted code requires a '/clr' option
11+
> managed targeted code requires a '/clr' option
1212
1313
You are using CLR constructs but you did not specify **/clr**.
1414

docs/error-messages/compiler-errors-1/fatal-error-c1191.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 2888c6c4-b4e6-449e-8ee0-7917f31086df
88
---
99
# Fatal Error C1191
1010

11-
'dll' can only be imported at global scope
11+
> 'dll' can only be imported at global scope
1212
1313
The instruction to import mscorlib.dll into a program that uses /clr programming cannot appear in a namespace or function, but must appear at global scope.
1414

docs/error-messages/compiler-errors-1/fatal-error-c1192.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ helpviewer_keywords: ["C1192"]
77
---
88
# Fatal Error C1192
99

10-
\#using failed on 'file'
10+
> #using failed on 'file'
1111
1212
Only a file in the Microsoft Intermediate Language (MSIL) format can be passed to a [#using](../../preprocessor/hash-using-directive-cpp.md) directive. The [/clr](../../build/reference/clr-common-language-runtime-compilation.md) compiler option lets you create an MSIL output file. Other Visual Studio languages also produce MSIL files.

docs/error-messages/compiler-errors-1/fatal-error-c1196.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 10a79b3f-3423-4ee3-98fa-e9e59cddabb1
88
---
99
# Fatal Error C1196
1010

11-
'identifier' : identifier found in type library 'typelib' is not a valid C++ identifier
11+
> 'identifier' : identifier found in type library 'typelib' is not a valid C++ identifier
1212
1313
One of the identifiers in your type library is not a valid C++ identifier. The type library is not available for use with [#import](../../preprocessor/hash-import-directive-cpp.md).

docs/error-messages/compiler-errors-1/fatal-error-c1197.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 22b801b7-e792-41f6-a461-973c03c69f25
88
---
99
# Fatal Error C1197
1010

11-
cannot reference 'mscorlib.dll_1' as the program has already referenced 'mscorlib.dll_2'
11+
> cannot reference 'mscorlib.dll_1' as the program has already referenced 'mscorlib.dll_2'
1212
1313
The compiler is matched to a version of the common language runtime. However, an attempt was made to reference a version of a common language runtime file from a previous version.
1414

0 commit comments

Comments
 (0)