Skip to content

Commit 7f67950

Browse files
authored
Add blockquotes for warning messages in range [C4041, C4080]
1 parent dda89e0 commit 7f67950

18 files changed

+18
-18
lines changed

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4041.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 107ee9fd-4b88-4f22-a18f-a20726831095
88
---
99
# Compiler Warning (level 1) C4041
1010

11-
compiler limit : terminating browser output
11+
> compiler limit : terminating browser output
1212
1313
Browser information exceeded the compiler limit.
1414

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4042.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: e4bd861b-1194-426b-bf79-68c5b021eb0a
88
---
99
# Compiler Warning (level 1) C4042
1010

11-
'identifier' : has bad storage class
11+
> 'identifier' : has bad storage class
1212
1313
The specified storage class cannot be used with this identifier in this context. The compiler uses the default storage class instead:
1414

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4045.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 3c6f7373-da91-45cd-b224-f49f7d8b4df0
88
---
99
# Compiler Warning (level 1) C4045
1010

11-
'array' : array bounds overflow
11+
> 'array' : array bounds overflow
1212
1313
The array has too many initializers. Extra initializers are ignored.
1414

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4047.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: b75ad6fb-5c93-4434-a85f-c4083051a5de
88
---
99
# Compiler Warning (level 1) C4047
1010

11-
'operator' : 'identifier1' differs in levels of indirection from 'identifier2'
11+
> 'operator' : 'identifier1' differs in levels of indirection from 'identifier2'
1212
1313
A pointer can point to a variable (one level of indirection), to another pointer that points to a variable (two levels of indirection), and so on.
1414

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4048.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 8429f513-4732-40f1-8e56-4c224e723bcb
88
---
99
# Compiler Warning (level 1) C4048
1010

11-
different declared array subscripts : 'identifier1' and 'identifier2'
11+
> different declared array subscripts : 'identifier1' and 'identifier2'
1212
1313
An expression involves pointers to arrays of different size. The pointers are used without conversion.
1414

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4049.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: d11c1870-bcfc-4d71-8945-b87ec6ec3514
88
---
99
# Compiler Warning (level 1) C4049
1010

11-
compiler limit : terminating line number emission
11+
> compiler limit : terminating line number emission
1212
1313
The file contains more than 16,777,215 (2<sup>24</sup>-1) source lines. The compiler stops numbering at 16,777,215.
1414

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4068.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 96a7397a-4eab-44ab-b3bb-36747503f7e5
88
---
99
# Compiler Warning (level 1) C4068
1010

11-
unknown pragma
11+
> unknown pragma
1212
1313
The compiler ignored an unrecognized [pragma](../../preprocessor/pragma-directives-and-the-pragma-keyword.md). Be sure the **pragma** is allowed by the compiler you are using. The following sample generates C4068:
1414

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4074.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: cd510e66-c338-4a86-a4d7-bfa1df9b16c3
88
---
99
# Compiler Warning (level 1) C4074
1010

11-
initializers put in compiler reserved initialization area
11+
> initializers put in compiler reserved initialization area
1212
1313
The compiler initialization area, which is specified by [#pragma init_seg](../../preprocessor/init-seg.md), is reserved by Microsoft. Code in this area may be executed before initialization of the C run-time library.
1414

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4075.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 19a700b6-f210-4b9d-a2f2-76cfe39ab178
88
---
99
# Compiler Warning (level 1) C4075
1010

11-
initializers put in unrecognized initialization area
11+
> initializers put in unrecognized initialization area
1212
1313
A [#pragma init_seg](../../preprocessor/init-seg.md) uses an unrecognized section name. The compiler ignores the **pragma** command.
1414

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4077.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: c2d28805-b33f-41ad-afba-33b3f788c649
88
---
99
# Compiler Warning (level 1) C4077
1010

11-
unknown check_stack option
11+
> unknown check_stack option
1212
1313
The old form of the **check_stack** pragma is used with an unknown argument. The argument must be `+`, `-`, `(on)`, `(off)`, or empty.
1414

0 commit comments

Comments
 (0)