adlint 1.16.0 → 1.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ChangeLog +471 -0
- data/MANIFEST +35 -8
- data/NEWS +50 -4
- data/bin/adlint +7 -7
- data/bin/adlint_chk +7 -7
- data/bin/adlint_cma +7 -7
- data/bin/adlint_sma +7 -7
- data/bin/adlintize +5 -5
- data/etc/mesg.d/en_US/messages.yml +3 -3
- data/etc/mesg.d/ja_JP/messages.yml +3 -3
- data/features/message_detection/E0013.feature +34 -0
- data/features/message_detection/W0007.feature +2 -0
- data/features/message_detection/W0583.feature +1 -2
- data/features/message_detection/W0641.feature +132 -0
- data/features/message_detection/W0643.feature +1 -1
- data/features/message_detection/W0644.feature +529 -0
- data/features/message_detection/W0645.feature +1 -1
- data/features/message_detection/W0649.feature +277 -0
- data/features/message_detection/W0650.feature +208 -0
- data/features/message_detection/W0697.feature +6 -0
- data/features/message_detection/W0705.feature +350 -0
- data/features/message_detection/W0707.feature +223 -0
- data/features/message_detection/W0711.feature +113 -0
- data/features/message_detection/W0712.feature +113 -0
- data/features/message_detection/W0713.feature +110 -0
- data/features/message_detection/W0714.feature +118 -0
- data/features/message_detection/W0715.feature +118 -0
- data/features/message_detection/W0716.feature +1 -0
- data/features/message_detection/W0717.feature +1 -0
- data/features/message_detection/W0718.feature +1 -0
- data/features/message_detection/W0719.feature +154 -0
- data/features/message_detection/W0723.feature +1 -2
- data/features/message_detection/W0732.feature +3 -0
- data/features/message_detection/W0733.feature +3 -0
- data/features/message_detection/W0734.feature +4 -0
- data/features/message_detection/W0735.feature +4 -0
- data/features/message_detection/W0745.feature +132 -0
- data/features/message_detection/W0780.feature +68 -0
- data/features/message_detection/W0783.feature +95 -0
- data/features/message_detection/W0792.feature +124 -0
- data/features/message_detection/W0793.feature +153 -0
- data/features/message_detection/W0794.feature +90 -0
- data/features/message_detection/W0830.feature +65 -0
- data/features/message_detection/W0833.feature +220 -0
- data/features/message_detection/W0834.feature +189 -0
- data/features/message_detection/W1026.feature +105 -0
- data/features/message_detection/W1031.feature +17 -34
- data/features/message_detection/W1039.feature +268 -0
- data/features/message_detection/W1047.feature +163 -0
- data/features/message_detection/W1066.feature +1 -0
- data/features/message_detection/W1067.feature +1 -0
- data/features/message_detection/W1068.feature +1 -0
- data/features/message_detection/W1069.feature +5 -0
- data/features/message_detection/W1070.feature +5 -0
- data/features/message_detection/W1071.feature +83 -0
- data/features/message_detection/W1073.feature +3 -2
- data/features/message_detection/W9003.feature +7 -12
- data/features/step_definitions/message_detection_steps.rb +4 -31
- data/features/support/env.rb +117 -2
- data/lib/adlint/c/branch.rb +0 -2
- data/lib/adlint/c/ctrlexpr.rb +33 -0
- data/lib/adlint/c/expr.rb +119 -31
- data/lib/adlint/c/interp.rb +44 -3
- data/lib/adlint/c/message.rb +1411 -29
- data/lib/adlint/c/object.rb +16 -2
- data/lib/adlint/c/option.rb +1 -0
- data/lib/adlint/c/parser.rb +101 -100
- data/lib/adlint/c/parser.y +3 -2
- data/lib/adlint/c/phase.rb +18 -0
- data/lib/adlint/c/resolver.rb +23 -0
- data/lib/adlint/c/syntax.rb +90 -4
- data/lib/adlint/c/type.rb +177 -110
- data/lib/adlint/cpp/macro.rb +4 -4
- data/lib/adlint/version.rb +2 -2
- data/share/demo/bad_include/test/"1/".h +0 -0
- data/share/doc/developers_guide_ja.html +3 -3
- data/share/doc/developers_guide_ja.texi +1 -1
- data/share/doc/users_guide_en.html +467 -506
- data/share/doc/users_guide_en.texi +95 -125
- data/share/doc/users_guide_ja.html +471 -518
- data/share/doc/users_guide_ja.texi +95 -133
- data/spec/spec_helper.rb +6 -0
- metadata +37 -10
data/lib/adlint/cpp/macro.rb
CHANGED
@@ -202,14 +202,14 @@ module Cpp #:nodoc:
|
|
202
202
|
substitute_argument(curr_token, next_token, arg, result,
|
203
203
|
macro_table, context)
|
204
204
|
when curr_token.value == "#"
|
205
|
-
if next_token and arg = args[next_token.value]
|
205
|
+
if next_token and arg = args[next_token.value] || []
|
206
206
|
stringized = stringize_argument(arg, location, macro_table)
|
207
207
|
result.push(stringized)
|
208
208
|
index += 1
|
209
209
|
end
|
210
210
|
when curr_token.value == "##" && next_token.value == "#"
|
211
211
|
if next_next_token = replacement_list.tokens[index + 2] and
|
212
|
-
arg = args[next_next_token.value]
|
212
|
+
arg = args[next_next_token.value] || []
|
213
213
|
stringized = stringize_argument(arg, location, macro_table)
|
214
214
|
concat_with_last_token([stringized], location, result, macro_table)
|
215
215
|
index += 2
|
@@ -299,8 +299,8 @@ module Cpp #:nodoc:
|
|
299
299
|
macro_table.notify_last_backslash_ignored(arg.last)
|
300
300
|
end
|
301
301
|
|
302
|
-
ReplacedToken.new(:PP_TOKEN, "\"#{str}\"",
|
303
|
-
:STRING_LITERAL, false)
|
302
|
+
ReplacedToken.new(:PP_TOKEN, "\"#{str.gsub(/["\\]/) { "\\" + $& }}\"",
|
303
|
+
expansion_location, :STRING_LITERAL, false)
|
304
304
|
end
|
305
305
|
|
306
306
|
def concat_with_last_token(arg_tokens, expansion_location, result_tokens,
|
data/lib/adlint/version.rb
CHANGED
File without changes
|
@@ -1,8 +1,8 @@
|
|
1
1
|
<html lang="ja">
|
2
2
|
<head>
|
3
|
-
<title>AdLint 1.
|
3
|
+
<title>AdLint 1.18.0 開発者ガイド</title>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
5
|
-
<meta name="description" content="AdLint 1.
|
5
|
+
<meta name="description" content="AdLint 1.18.0 開発者ガイド">
|
6
6
|
<meta name="generator" content="makeinfo 4.13">
|
7
7
|
<link title="Top" rel="top" href="#Top">
|
8
8
|
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
@@ -44,7 +44,7 @@ td { border: 1px solid black; }
|
|
44
44
|
--></style>
|
45
45
|
</head>
|
46
46
|
<body>
|
47
|
-
<h1 class="settitle">AdLint 1.
|
47
|
+
<h1 class="settitle">AdLint 1.18.0 開発者ガイド</h1>
|
48
48
|
<div class="contents">
|
49
49
|
<h2>Table of Contents</h2>
|
50
50
|
<ul>
|
@@ -1,8 +1,8 @@
|
|
1
1
|
<html lang="en">
|
2
2
|
<head>
|
3
|
-
<title>AdLint 1.
|
3
|
+
<title>AdLint 1.18.0 User's Guide</title>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
5
|
-
<meta name="description" content="AdLint 1.
|
5
|
+
<meta name="description" content="AdLint 1.18.0 User's Guide">
|
6
6
|
<meta name="generator" content="makeinfo 4.13">
|
7
7
|
<link title="Top" rel="top" href="#Top">
|
8
8
|
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
@@ -44,7 +44,7 @@ td { border: 1px solid black; }
|
|
44
44
|
--></style>
|
45
45
|
</head>
|
46
46
|
<body>
|
47
|
-
<h1 class="settitle">AdLint 1.
|
47
|
+
<h1 class="settitle">AdLint 1.18.0 User's Guide</h1>
|
48
48
|
<div class="node">
|
49
49
|
<a name="Top"></a>
|
50
50
|
<p><hr>
|
@@ -2788,12 +2788,11 @@ Up: <a rel="up" accesskey="u" href="#Top">Top</a>
|
|
2788
2788
|
<li><a href="#W1035">W1035</a>: `%s' declared typedef. It cannot be redeclared inside an inner scope without using explicit type.
|
2789
2789
|
<li><a href="#W1036">W1036</a>: `%s' declared typedef. It cannot be redeclared as a member of structure or union without using explicit type.
|
2790
2790
|
<li><a href="#W1037">W1037</a>: `%s' which has external coupling is declared more than one, this is incompatible.
|
2791
|
-
<li><a href="#W1039">W1039</a>: `ll' is used in conversion specifier.
|
2791
|
+
<li><a href="#W1039">W1039</a>: `ll' is used in %sth conversion specifier.
|
2792
2792
|
<li><a href="#W1040">W1040</a>: An unrecognizable string is described after preprocessing directive.
|
2793
2793
|
<li><a href="#W1041">W1041</a>: `%s' is not official preprocessing directive of ISO C standards.
|
2794
2794
|
<li><a href="#W1042">W1042</a>: 'sizeof' operator is using in preprocessing directive. This is the language extension.
|
2795
2795
|
<li><a href="#W1043">W1043</a>: `@ address' is not supported ISO C standards. It will be considered as language extension.
|
2796
|
-
<li><a href="#W1044">W1044</a>: An expression which includes the statement is not supported ISO C standards. It will be considered as language extension.
|
2797
2796
|
<li><a href="#W1045">W1045</a>: This `@ word' syntax will be ignored.
|
2798
2797
|
<li><a href="#W1046">W1046</a>: A space character is ignored between `\' and line feed.
|
2799
2798
|
<li><a href="#W1047">W1047</a>: The struct, union or array's initializer is not literal.
|
@@ -30364,13 +30363,14 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
30364
30363
|
|
30365
30364
|
<h4 class="subsection">6.523.2 Content</h4>
|
30366
30365
|
|
30367
|
-
<p
|
30368
|
-
|
30369
|
-
<p>Under construction.
|
30366
|
+
<p>Under construction.
|
30370
30367
|
|
30371
30368
|
<h4 class="subsection">6.523.3 Sample code</h4>
|
30372
30369
|
|
30373
|
-
<pre class="verbatim"
|
30370
|
+
<pre class="verbatim">int *foo(const float f)
|
30371
|
+
{
|
30372
|
+
return (int *) f; /* W0641 */
|
30373
|
+
}
|
30374
30374
|
</pre>
|
30375
30375
|
|
30376
30376
|
<h4 class="subsection">6.523.4 Related message</h4>
|
@@ -30379,7 +30379,7 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
30379
30379
|
|
30380
30380
|
<h4 class="subsection">6.523.5 Since</h4>
|
30381
30381
|
|
30382
|
-
<p>
|
30382
|
+
<p>1.18.0
|
30383
30383
|
|
30384
30384
|
<div class="node">
|
30385
30385
|
<a name="W0642"></a>
|
@@ -30485,16 +30485,15 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
30485
30485
|
|
30486
30486
|
<h4 class="subsection">6.526.2 Content</h4>
|
30487
30487
|
|
30488
|
-
<p
|
30489
|
-
|
30490
|
-
<p>Under construction.
|
30488
|
+
<p>Under construction.
|
30491
30489
|
|
30492
30490
|
<h4 class="subsection">6.526.3 Sample code</h4>
|
30493
30491
|
|
30494
|
-
<pre class="verbatim">extern void
|
30492
|
+
<pre class="verbatim">extern void foo(void);
|
30495
30493
|
|
30496
|
-
|
30497
|
-
|
30494
|
+
int bar(void)
|
30495
|
+
{
|
30496
|
+
return (int) foo(); /* W0644 */
|
30498
30497
|
}
|
30499
30498
|
</pre>
|
30500
30499
|
|
@@ -30509,7 +30508,7 @@ if(func() == 0) { /* W0644 */
|
|
30509
30508
|
|
30510
30509
|
<h4 class="subsection">6.526.5 Since</h4>
|
30511
30510
|
|
30512
|
-
<p>
|
30511
|
+
<p>1.18.0
|
30513
30512
|
|
30514
30513
|
<div class="node">
|
30515
30514
|
<a name="W0645"></a>
|
@@ -30611,14 +30610,14 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
30611
30610
|
|
30612
30611
|
<h4 class="subsection">6.529.2 Content</h4>
|
30613
30612
|
|
30614
|
-
<p
|
30615
|
-
|
30616
|
-
<p>Under construction.
|
30613
|
+
<p>Under construction.
|
30617
30614
|
|
30618
30615
|
<h4 class="subsection">6.529.3 Sample code</h4>
|
30619
30616
|
|
30620
|
-
<pre class="verbatim">
|
30621
|
-
|
30617
|
+
<pre class="verbatim">int foo(int i)
|
30618
|
+
{
|
30619
|
+
return i << -1; /* W0649 */
|
30620
|
+
}
|
30622
30621
|
</pre>
|
30623
30622
|
|
30624
30623
|
<h4 class="subsection">6.529.4 Related message</h4>
|
@@ -30629,7 +30628,7 @@ a <<= -4; /* W0649 */
|
|
30629
30628
|
|
30630
30629
|
<h4 class="subsection">6.529.5 Since</h4>
|
30631
30630
|
|
30632
|
-
<p>
|
30631
|
+
<p>1.18.0
|
30633
30632
|
|
30634
30633
|
<div class="node">
|
30635
30634
|
<a name="W0650"></a>
|
@@ -30650,14 +30649,14 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
30650
30649
|
|
30651
30650
|
<h4 class="subsection">6.530.2 Content</h4>
|
30652
30651
|
|
30653
|
-
<p
|
30654
|
-
|
30655
|
-
<p>Under construction.
|
30652
|
+
<p>Under construction.
|
30656
30653
|
|
30657
30654
|
<h4 class="subsection">6.530.3 Sample code</h4>
|
30658
30655
|
|
30659
|
-
<pre class="verbatim">
|
30660
|
-
|
30656
|
+
<pre class="verbatim">unsigned int foo(unsigned int i)
|
30657
|
+
{
|
30658
|
+
return i << 32; /* W0650 */
|
30659
|
+
}
|
30661
30660
|
</pre>
|
30662
30661
|
|
30663
30662
|
<h4 class="subsection">6.530.4 Related message</h4>
|
@@ -30668,7 +30667,7 @@ a = b << 16; /* W0650 */
|
|
30668
30667
|
|
30669
30668
|
<h4 class="subsection">6.530.5 Since</h4>
|
30670
30669
|
|
30671
|
-
<p>
|
30670
|
+
<p>1.18.0
|
30672
30671
|
|
30673
30672
|
<div class="node">
|
30674
30673
|
<a name="W0653"></a>
|
@@ -33704,15 +33703,17 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
33704
33703
|
|
33705
33704
|
<h4 class="subsection">6.582.2 Content</h4>
|
33706
33705
|
|
33707
|
-
<p
|
33708
|
-
|
33709
|
-
<p>Under construction.
|
33706
|
+
<p>Under construction.
|
33710
33707
|
|
33711
33708
|
<h4 class="subsection">6.582.3 Sample code</h4>
|
33712
33709
|
|
33713
|
-
<pre class="verbatim">int
|
33710
|
+
<pre class="verbatim">extern int a[5];
|
33714
33711
|
|
33715
|
-
|
33712
|
+
int foo(void)
|
33713
|
+
{
|
33714
|
+
int i = a[5]; /* W0707 */
|
33715
|
+
return i;
|
33716
|
+
}
|
33716
33717
|
</pre>
|
33717
33718
|
|
33718
33719
|
<h4 class="subsection">6.582.4 Related message</h4>
|
@@ -33721,7 +33722,7 @@ arr[15] = 0; /* W0707 */
|
|
33721
33722
|
|
33722
33723
|
<h4 class="subsection">6.582.5 Since</h4>
|
33723
33724
|
|
33724
|
-
<p>
|
33725
|
+
<p>1.18.0
|
33725
33726
|
|
33726
33727
|
<div class="node">
|
33727
33728
|
<a name="W0708"></a>
|
@@ -34110,14 +34111,14 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
34110
34111
|
|
34111
34112
|
<h4 class="subsection">6.592.2 Content</h4>
|
34112
34113
|
|
34113
|
-
<p
|
34114
|
-
|
34115
|
-
<p>Under construction.
|
34114
|
+
<p>Under construction.
|
34116
34115
|
|
34117
34116
|
<h4 class="subsection">6.592.3 Sample code</h4>
|
34118
34117
|
|
34119
|
-
<pre class="verbatim">
|
34120
|
-
|
34118
|
+
<pre class="verbatim">int foo(char c)
|
34119
|
+
{
|
34120
|
+
return c << 31; /* W0719 */
|
34121
|
+
}
|
34121
34122
|
</pre>
|
34122
34123
|
|
34123
34124
|
<h4 class="subsection">6.592.4 Related message</h4>
|
@@ -34126,7 +34127,7 @@ unsigned int ui = uc >> 8; /* W0719 */
|
|
34126
34127
|
|
34127
34128
|
<h4 class="subsection">6.592.5 Since</h4>
|
34128
34129
|
|
34129
|
-
<p>
|
34130
|
+
<p>1.18.0
|
34130
34131
|
|
34131
34132
|
<div class="node">
|
34132
34133
|
<a name="W0720"></a>
|
@@ -36884,13 +36885,14 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
36884
36885
|
|
36885
36886
|
<h4 class="subsection">6.649.2 Content</h4>
|
36886
36887
|
|
36887
|
-
<p
|
36888
|
-
|
36889
|
-
<p>Under construction.
|
36888
|
+
<p>Under construction.
|
36890
36889
|
|
36891
36890
|
<h4 class="subsection">6.649.3 Sample code</h4>
|
36892
36891
|
|
36893
|
-
<pre class="verbatim">unsigned int
|
36892
|
+
<pre class="verbatim">unsigned int foo(void)
|
36893
|
+
{
|
36894
|
+
return 0x08000000U << 5; /* W0780 */
|
36895
|
+
}
|
36894
36896
|
</pre>
|
36895
36897
|
|
36896
36898
|
<h4 class="subsection">6.649.4 Related message</h4>
|
@@ -36899,7 +36901,7 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
36899
36901
|
|
36900
36902
|
<h4 class="subsection">6.649.5 Since</h4>
|
36901
36903
|
|
36902
|
-
<p>
|
36904
|
+
<p>1.18.0
|
36903
36905
|
|
36904
36906
|
<div class="node">
|
36905
36907
|
<a name="W0781"></a>
|
@@ -36978,13 +36980,16 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
36978
36980
|
|
36979
36981
|
<h4 class="subsection">6.651.2 Content</h4>
|
36980
36982
|
|
36981
|
-
<p
|
36982
|
-
|
36983
|
-
<p>Under construction.
|
36983
|
+
<p>Under construction.
|
36984
36984
|
|
36985
36985
|
<h4 class="subsection">6.651.3 Sample code</h4>
|
36986
36986
|
|
36987
|
-
<pre class="verbatim"
|
36987
|
+
<pre class="verbatim">extern struct Foo *gp;
|
36988
|
+
|
36989
|
+
void foo(int *p)
|
36990
|
+
{
|
36991
|
+
gp = (struct Foo *) p; /* W0783 */
|
36992
|
+
}
|
36988
36993
|
</pre>
|
36989
36994
|
|
36990
36995
|
<h4 class="subsection">6.651.4 Related message</h4>
|
@@ -36993,7 +36998,7 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
36993
36998
|
|
36994
36999
|
<h4 class="subsection">6.651.5 Since</h4>
|
36995
37000
|
|
36996
|
-
<p>
|
37001
|
+
<p>1.18.0
|
36997
37002
|
|
36998
37003
|
<div class="node">
|
36999
37004
|
<a name="W0784"></a>
|
@@ -37361,13 +37366,14 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
37361
37366
|
|
37362
37367
|
<h4 class="subsection">6.660.2 Content</h4>
|
37363
37368
|
|
37364
|
-
<p
|
37365
|
-
|
37366
|
-
<p>Under construction.
|
37369
|
+
<p>Under construction.
|
37367
37370
|
|
37368
37371
|
<h4 class="subsection">6.660.3 Sample code</h4>
|
37369
37372
|
|
37370
|
-
<pre class="verbatim"
|
37373
|
+
<pre class="verbatim">int (*foo(const float f))(void)
|
37374
|
+
{
|
37375
|
+
return (int (*)(void)) f; /* W0792 */
|
37376
|
+
}
|
37371
37377
|
</pre>
|
37372
37378
|
|
37373
37379
|
<h4 class="subsection">6.660.4 Related message</h4>
|
@@ -37376,7 +37382,7 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
37376
37382
|
|
37377
37383
|
<h4 class="subsection">6.660.5 Since</h4>
|
37378
37384
|
|
37379
|
-
<p>
|
37385
|
+
<p>1.18.0
|
37380
37386
|
|
37381
37387
|
<div class="node">
|
37382
37388
|
<a name="W0793"></a>
|
@@ -37397,13 +37403,16 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
37397
37403
|
|
37398
37404
|
<h4 class="subsection">6.661.2 Content</h4>
|
37399
37405
|
|
37400
|
-
<p
|
37401
|
-
|
37402
|
-
<p>Under construction.
|
37406
|
+
<p>Under construction.
|
37403
37407
|
|
37404
37408
|
<h4 class="subsection">6.661.3 Sample code</h4>
|
37405
37409
|
|
37406
|
-
<pre class="verbatim"
|
37410
|
+
<pre class="verbatim">typedef int (*funptr_t)(void);
|
37411
|
+
|
37412
|
+
funptr_t foo(float *p)
|
37413
|
+
{
|
37414
|
+
return (funptr_t) p; /* W0793 */
|
37415
|
+
}
|
37407
37416
|
</pre>
|
37408
37417
|
|
37409
37418
|
<h4 class="subsection">6.661.4 Related message</h4>
|
@@ -37412,7 +37421,7 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
37412
37421
|
|
37413
37422
|
<h4 class="subsection">6.661.5 Since</h4>
|
37414
37423
|
|
37415
|
-
<p>
|
37424
|
+
<p>1.18.0
|
37416
37425
|
|
37417
37426
|
<div class="node">
|
37418
37427
|
<a name="W0794"></a>
|
@@ -37433,14 +37442,14 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
37433
37442
|
|
37434
37443
|
<h4 class="subsection">6.662.2 Content</h4>
|
37435
37444
|
|
37436
|
-
<p
|
37437
|
-
|
37438
|
-
<p>Under construction.
|
37445
|
+
<p>Under construction.
|
37439
37446
|
|
37440
37447
|
<h4 class="subsection">6.662.3 Sample code</h4>
|
37441
37448
|
|
37442
|
-
<pre class="verbatim">int
|
37443
|
-
|
37449
|
+
<pre class="verbatim">int func(int i)
|
37450
|
+
{
|
37451
|
+
return i << 1; /* W0794 */
|
37452
|
+
}
|
37444
37453
|
</pre>
|
37445
37454
|
|
37446
37455
|
<h4 class="subsection">6.662.4 Related message</h4>
|
@@ -37449,7 +37458,7 @@ a <<= 3; /* W0794 */
|
|
37449
37458
|
|
37450
37459
|
<h4 class="subsection">6.662.5 Since</h4>
|
37451
37460
|
|
37452
|
-
<p>
|
37461
|
+
<p>1.18.0
|
37453
37462
|
|
37454
37463
|
<div class="node">
|
37455
37464
|
<a name="W0795"></a>
|
@@ -38240,17 +38249,11 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
38240
38249
|
|
38241
38250
|
<h4 class="subsection">6.682.2 Content</h4>
|
38242
38251
|
|
38243
|
-
<p
|
38244
|
-
|
38245
|
-
<p>Under construction.
|
38252
|
+
<p>Under construction.
|
38246
38253
|
|
38247
38254
|
<h4 class="subsection">6.682.3 Sample code</h4>
|
38248
38255
|
|
38249
|
-
<pre class="verbatim">enum
|
38250
|
-
RED,
|
38251
|
-
BLUE,
|
38252
|
-
GREEN, /* W0830 */
|
38253
|
-
};
|
38256
|
+
<pre class="verbatim">enum Color { Red, Green, Blue, }; /* W0830 */
|
38254
38257
|
</pre>
|
38255
38258
|
|
38256
38259
|
<h4 class="subsection">6.682.4 Related message</h4>
|
@@ -38259,7 +38262,7 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
38259
38262
|
|
38260
38263
|
<h4 class="subsection">6.682.5 Since</h4>
|
38261
38264
|
|
38262
|
-
<p>
|
38265
|
+
<p>1.18.0
|
38263
38266
|
|
38264
38267
|
<div class="node">
|
38265
38268
|
<a name="W0831"></a>
|
@@ -38373,13 +38376,11 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
38373
38376
|
|
38374
38377
|
<h4 class="subsection">6.685.2 Content</h4>
|
38375
38378
|
|
38376
|
-
<p
|
38377
|
-
|
38378
|
-
<p>Under construction.
|
38379
|
+
<p>Under construction.
|
38379
38380
|
|
38380
38381
|
<h4 class="subsection">6.685.3 Sample code</h4>
|
38381
38382
|
|
38382
|
-
<pre class="verbatim">long long
|
38383
|
+
<pre class="verbatim">long long ll = 123LL; /* W0833 */
|
38383
38384
|
</pre>
|
38384
38385
|
|
38385
38386
|
<h4 class="subsection">6.685.4 Related message</h4>
|
@@ -38390,7 +38391,7 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
38390
38391
|
|
38391
38392
|
<h4 class="subsection">6.685.5 Since</h4>
|
38392
38393
|
|
38393
|
-
<p>
|
38394
|
+
<p>1.18.0
|
38394
38395
|
|
38395
38396
|
<div class="node">
|
38396
38397
|
<a name="W0834"></a>
|
@@ -38411,13 +38412,11 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
38411
38412
|
|
38412
38413
|
<h4 class="subsection">6.686.2 Content</h4>
|
38413
38414
|
|
38414
|
-
<p
|
38415
|
-
|
38416
|
-
<p>Under construction.
|
38415
|
+
<p>Under construction.
|
38417
38416
|
|
38418
38417
|
<h4 class="subsection">6.686.3 Sample code</h4>
|
38419
38418
|
|
38420
|
-
<pre class="verbatim">long long
|
38419
|
+
<pre class="verbatim">extern long long ll; /* W0834 */
|
38421
38420
|
</pre>
|
38422
38421
|
|
38423
38422
|
<h4 class="subsection">6.686.4 Related message</h4>
|
@@ -38428,7 +38427,7 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
38428
38427
|
|
38429
38428
|
<h4 class="subsection">6.686.5 Since</h4>
|
38430
38429
|
|
38431
|
-
<p>
|
38430
|
+
<p>1.18.0
|
38432
38431
|
|
38433
38432
|
<div class="node">
|
38434
38433
|
<a name="W0835"></a>
|
@@ -38641,13 +38640,17 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
38641
38640
|
|
38642
38641
|
<h4 class="subsection">6.692.2 Content</h4>
|
38643
38642
|
|
38644
|
-
<p
|
38645
|
-
|
38646
|
-
<p>Under construction.
|
38643
|
+
<p>Under construction.
|
38647
38644
|
|
38648
38645
|
<h4 class="subsection">6.692.3 Sample code</h4>
|
38649
38646
|
|
38650
|
-
<pre class="verbatim"
|
38647
|
+
<pre class="verbatim">extern struct st s;
|
38648
|
+
extern void foo(struct st);
|
38649
|
+
|
38650
|
+
void bar(void)
|
38651
|
+
{
|
38652
|
+
foo(s); /* W1026 */
|
38653
|
+
}
|
38651
38654
|
</pre>
|
38652
38655
|
|
38653
38656
|
<h4 class="subsection">6.692.4 Related message</h4>
|
@@ -38656,7 +38659,7 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
38656
38659
|
|
38657
38660
|
<h4 class="subsection">6.692.5 Since</h4>
|
38658
38661
|
|
38659
|
-
<p>
|
38662
|
+
<p>1.18.0
|
38660
38663
|
|
38661
38664
|
<div class="node">
|
38662
38665
|
<a name="W1027"></a>
|
@@ -39110,17 +39113,20 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39110
39113
|
|
39111
39114
|
<h4 class="subsection">6.704.1 Message body</h4>
|
39112
39115
|
|
39113
|
-
<p>`ll' is used in conversion specifier.
|
39116
|
+
<p>`ll' is used in %sth conversion specifier.
|
39114
39117
|
|
39115
39118
|
<h4 class="subsection">6.704.2 Content</h4>
|
39116
39119
|
|
39117
|
-
<p
|
39118
|
-
|
39119
|
-
<p>Under construction.
|
39120
|
+
<p>Under construction.
|
39120
39121
|
|
39121
39122
|
<h4 class="subsection">6.704.3 Sample code</h4>
|
39122
39123
|
|
39123
|
-
<pre class="verbatim"
|
39124
|
+
<pre class="verbatim">extern int printf(const char *, ...);
|
39125
|
+
|
39126
|
+
void foo(long long ll)
|
39127
|
+
{
|
39128
|
+
printf("%lld", ll); /* W1039 */
|
39129
|
+
}
|
39124
39130
|
</pre>
|
39125
39131
|
|
39126
39132
|
<h4 class="subsection">6.704.4 Related message</h4>
|
@@ -39129,7 +39135,7 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39129
39135
|
|
39130
39136
|
<h4 class="subsection">6.704.5 Since</h4>
|
39131
39137
|
|
39132
|
-
<p>
|
39138
|
+
<p>1.18.0
|
39133
39139
|
|
39134
39140
|
<div class="node">
|
39135
39141
|
<a name="W1040"></a>
|
@@ -39257,7 +39263,7 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39257
39263
|
<div class="node">
|
39258
39264
|
<a name="W1043"></a>
|
39259
39265
|
<p><hr>
|
39260
|
-
Next: <a rel="next" accesskey="n" href="#
|
39266
|
+
Next: <a rel="next" accesskey="n" href="#W1045">W1045</a>,
|
39261
39267
|
Previous: <a rel="previous" accesskey="p" href="#W1042">W1042</a>,
|
39262
39268
|
Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
39263
39269
|
|
@@ -39285,7 +39291,6 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39285
39291
|
<h4 class="subsection">6.708.4 Related message</h4>
|
39286
39292
|
|
39287
39293
|
<ul>
|
39288
|
-
<li><a href="#W1044">W1044</a> An expression which includes the statement is not supported ISO C standards. It will be considered as language extension.
|
39289
39294
|
<li><a href="#W1045">W1045</a> This `@ word' syntax will be ignored.
|
39290
39295
|
</ul>
|
39291
39296
|
|
@@ -39294,25 +39299,25 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39294
39299
|
<p>After 2.0.0 (planned)
|
39295
39300
|
|
39296
39301
|
<div class="node">
|
39297
|
-
<a name="
|
39302
|
+
<a name="W1045"></a>
|
39298
39303
|
<p><hr>
|
39299
|
-
Next: <a rel="next" accesskey="n" href="#
|
39304
|
+
Next: <a rel="next" accesskey="n" href="#W1046">W1046</a>,
|
39300
39305
|
Previous: <a rel="previous" accesskey="p" href="#W1043">W1043</a>,
|
39301
39306
|
Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
39302
39307
|
|
39303
39308
|
</div>
|
39304
39309
|
|
39305
|
-
<h3 class="section">6.709
|
39310
|
+
<h3 class="section">6.709 W1045</h3>
|
39306
39311
|
|
39307
|
-
<p><a name="index-
|
39312
|
+
<p><a name="index-W1045-744"></a>
|
39308
39313
|
|
39309
39314
|
<h4 class="subsection">6.709.1 Message body</h4>
|
39310
39315
|
|
39311
|
-
<p>
|
39316
|
+
<p>This `@ word' syntax will be ignored.
|
39312
39317
|
|
39313
39318
|
<h4 class="subsection">6.709.2 Content</h4>
|
39314
39319
|
|
39315
|
-
<p><b>This message will be supported
|
39320
|
+
<p><b>This message will be supported after AdLint 2.0.0</b>
|
39316
39321
|
|
39317
39322
|
<p>Under construction.
|
39318
39323
|
|
@@ -39325,50 +39330,10 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39325
39330
|
|
39326
39331
|
<ul>
|
39327
39332
|
<li><a href="#W1043">W1043</a> `@ address' is not supported ISO C standards. It will be considered as language extension.
|
39328
|
-
<li><a href="#W1045">W1045</a> This `@ word' syntax will be ignored.
|
39329
39333
|
</ul>
|
39330
39334
|
|
39331
39335
|
<h4 class="subsection">6.709.5 Since</h4>
|
39332
39336
|
|
39333
|
-
<p>2.0.0 (planned)
|
39334
|
-
|
39335
|
-
<div class="node">
|
39336
|
-
<a name="W1045"></a>
|
39337
|
-
<p><hr>
|
39338
|
-
Next: <a rel="next" accesskey="n" href="#W1046">W1046</a>,
|
39339
|
-
Previous: <a rel="previous" accesskey="p" href="#W1044">W1044</a>,
|
39340
|
-
Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
39341
|
-
|
39342
|
-
</div>
|
39343
|
-
|
39344
|
-
<h3 class="section">6.710 W1045</h3>
|
39345
|
-
|
39346
|
-
<p><a name="index-W1045-745"></a>
|
39347
|
-
|
39348
|
-
<h4 class="subsection">6.710.1 Message body</h4>
|
39349
|
-
|
39350
|
-
<p>This `@ word' syntax will be ignored.
|
39351
|
-
|
39352
|
-
<h4 class="subsection">6.710.2 Content</h4>
|
39353
|
-
|
39354
|
-
<p><b>This message will be supported after AdLint 2.0.0</b>
|
39355
|
-
|
39356
|
-
<p>Under construction.
|
39357
|
-
|
39358
|
-
<h4 class="subsection">6.710.3 Sample code</h4>
|
39359
|
-
|
39360
|
-
<pre class="verbatim">/* will be added */
|
39361
|
-
</pre>
|
39362
|
-
|
39363
|
-
<h4 class="subsection">6.710.4 Related message</h4>
|
39364
|
-
|
39365
|
-
<ul>
|
39366
|
-
<li><a href="#W1043">W1043</a> `@ address' is not supported ISO C standards. It will be considered as language extension.
|
39367
|
-
<li><a href="#W1044">W1044</a> An expression which includes the statement is not supported ISO C standards. It will be considered as language extension.
|
39368
|
-
</ul>
|
39369
|
-
|
39370
|
-
<h4 class="subsection">6.710.5 Since</h4>
|
39371
|
-
|
39372
39337
|
<p>After 2.0.0 (planned)
|
39373
39338
|
|
39374
39339
|
<div class="node">
|
@@ -39380,19 +39345,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39380
39345
|
|
39381
39346
|
</div>
|
39382
39347
|
|
39383
|
-
<h3 class="section">6.
|
39348
|
+
<h3 class="section">6.710 W1046</h3>
|
39384
39349
|
|
39385
|
-
<p><a name="index-W1046-
|
39350
|
+
<p><a name="index-W1046-745"></a>
|
39386
39351
|
|
39387
|
-
<h4 class="subsection">6.
|
39352
|
+
<h4 class="subsection">6.710.1 Message body</h4>
|
39388
39353
|
|
39389
39354
|
<p>A space character is ignored between `\' and line feed.
|
39390
39355
|
|
39391
|
-
<h4 class="subsection">6.
|
39356
|
+
<h4 class="subsection">6.710.2 Content</h4>
|
39392
39357
|
|
39393
39358
|
<p>Under construction.
|
39394
39359
|
|
39395
|
-
<h4 class="subsection">6.
|
39360
|
+
<h4 class="subsection">6.710.3 Sample code</h4>
|
39396
39361
|
|
39397
39362
|
<pre class="verbatim">#define FOO(a, b) /* OK */ \
|
39398
39363
|
( /* W1046 */ \
|
@@ -39400,11 +39365,11 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39400
39365
|
)
|
39401
39366
|
</pre>
|
39402
39367
|
|
39403
|
-
<h4 class="subsection">6.
|
39368
|
+
<h4 class="subsection">6.710.4 Related message</h4>
|
39404
39369
|
|
39405
39370
|
<p>None.
|
39406
39371
|
|
39407
|
-
<h4 class="subsection">6.
|
39372
|
+
<h4 class="subsection">6.710.5 Since</h4>
|
39408
39373
|
|
39409
39374
|
<p>1.16.0
|
39410
39375
|
|
@@ -39417,32 +39382,34 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39417
39382
|
|
39418
39383
|
</div>
|
39419
39384
|
|
39420
|
-
<h3 class="section">6.
|
39385
|
+
<h3 class="section">6.711 W1047</h3>
|
39421
39386
|
|
39422
|
-
<p><a name="index-W1047-
|
39387
|
+
<p><a name="index-W1047-746"></a>
|
39423
39388
|
|
39424
|
-
<h4 class="subsection">6.
|
39389
|
+
<h4 class="subsection">6.711.1 Message body</h4>
|
39425
39390
|
|
39426
39391
|
<p>The struct, union or array's initializer is not literal.
|
39427
39392
|
|
39428
|
-
<h4 class="subsection">6.
|
39429
|
-
|
39430
|
-
<p><b>This message will be supported in AdLint 2.0.0</b>
|
39393
|
+
<h4 class="subsection">6.711.2 Content</h4>
|
39431
39394
|
|
39432
|
-
|
39395
|
+
<p>Under construction.
|
39433
39396
|
|
39434
|
-
<h4 class="subsection">6.
|
39397
|
+
<h4 class="subsection">6.711.3 Sample code</h4>
|
39435
39398
|
|
39436
|
-
<pre class="verbatim"
|
39399
|
+
<pre class="verbatim">int foo(int i, int j)
|
39400
|
+
{
|
39401
|
+
int a[] = { 0, i, j }; /* W1047 */
|
39402
|
+
return a[1];
|
39403
|
+
}
|
39437
39404
|
</pre>
|
39438
39405
|
|
39439
|
-
<h4 class="subsection">6.
|
39406
|
+
<h4 class="subsection">6.711.4 Related message</h4>
|
39440
39407
|
|
39441
39408
|
<p>None.
|
39442
39409
|
|
39443
|
-
<h4 class="subsection">6.
|
39410
|
+
<h4 class="subsection">6.711.5 Since</h4>
|
39444
39411
|
|
39445
|
-
<p>
|
39412
|
+
<p>1.18.0
|
39446
39413
|
|
39447
39414
|
<div class="node">
|
39448
39415
|
<a name="W1048"></a>
|
@@ -39453,30 +39420,30 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39453
39420
|
|
39454
39421
|
</div>
|
39455
39422
|
|
39456
|
-
<h3 class="section">6.
|
39423
|
+
<h3 class="section">6.712 W1048</h3>
|
39457
39424
|
|
39458
|
-
<p><a name="index-W1048-
|
39425
|
+
<p><a name="index-W1048-747"></a>
|
39459
39426
|
|
39460
|
-
<h4 class="subsection">6.
|
39427
|
+
<h4 class="subsection">6.712.1 Message body</h4>
|
39461
39428
|
|
39462
39429
|
<p>The multi byte string literal is an implementation defined value.
|
39463
39430
|
|
39464
|
-
<h4 class="subsection">6.
|
39431
|
+
<h4 class="subsection">6.712.2 Content</h4>
|
39465
39432
|
|
39466
39433
|
<p><b>This message will be supported after AdLint 2.0.0</b>
|
39467
39434
|
|
39468
39435
|
<p>Under construction.
|
39469
39436
|
|
39470
|
-
<h4 class="subsection">6.
|
39437
|
+
<h4 class="subsection">6.712.3 Sample code</h4>
|
39471
39438
|
|
39472
39439
|
<pre class="verbatim">/* will be added */
|
39473
39440
|
</pre>
|
39474
39441
|
|
39475
|
-
<h4 class="subsection">6.
|
39442
|
+
<h4 class="subsection">6.712.4 Related message</h4>
|
39476
39443
|
|
39477
39444
|
<p>None.
|
39478
39445
|
|
39479
|
-
<h4 class="subsection">6.
|
39446
|
+
<h4 class="subsection">6.712.5 Since</h4>
|
39480
39447
|
|
39481
39448
|
<p>After 2.0.0 (planned)
|
39482
39449
|
|
@@ -39489,19 +39456,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39489
39456
|
|
39490
39457
|
</div>
|
39491
39458
|
|
39492
|
-
<h3 class="section">6.
|
39459
|
+
<h3 class="section">6.713 W1049</h3>
|
39493
39460
|
|
39494
|
-
<p><a name="index-W1049-
|
39461
|
+
<p><a name="index-W1049-748"></a>
|
39495
39462
|
|
39496
|
-
<h4 class="subsection">6.
|
39463
|
+
<h4 class="subsection">6.713.1 Message body</h4>
|
39497
39464
|
|
39498
39465
|
<p>The result of conversion to signed integer type in integer expression might not be expressed by a signed type.
|
39499
39466
|
|
39500
|
-
<h4 class="subsection">6.
|
39467
|
+
<h4 class="subsection">6.713.2 Content</h4>
|
39501
39468
|
|
39502
39469
|
<p>Under construction.
|
39503
39470
|
|
39504
|
-
<h4 class="subsection">6.
|
39471
|
+
<h4 class="subsection">6.713.3 Sample code</h4>
|
39505
39472
|
|
39506
39473
|
<p>example 1
|
39507
39474
|
<pre class="verbatim">void func1(signed int si)
|
@@ -39517,7 +39484,7 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39517
39484
|
}
|
39518
39485
|
</pre>
|
39519
39486
|
|
39520
|
-
<h4 class="subsection">6.
|
39487
|
+
<h4 class="subsection">6.713.4 Related message</h4>
|
39521
39488
|
|
39522
39489
|
<ul>
|
39523
39490
|
<li><a href="#W1050">W1050</a> The result of conversion to signed integer type in integer expression is not express by a signed type.
|
@@ -39525,7 +39492,7 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39525
39492
|
<li><a href="#W1052">W1052</a> The result of arithmetic operation in unsigned type can be going around by overflow.
|
39526
39493
|
</ul>
|
39527
39494
|
|
39528
|
-
<h4 class="subsection">6.
|
39495
|
+
<h4 class="subsection">6.713.5 Since</h4>
|
39529
39496
|
|
39530
39497
|
<p>1.0.0
|
39531
39498
|
|
@@ -39538,19 +39505,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39538
39505
|
|
39539
39506
|
</div>
|
39540
39507
|
|
39541
|
-
<h3 class="section">6.
|
39508
|
+
<h3 class="section">6.714 W1050</h3>
|
39542
39509
|
|
39543
|
-
<p><a name="index-W1050-
|
39510
|
+
<p><a name="index-W1050-749"></a>
|
39544
39511
|
|
39545
|
-
<h4 class="subsection">6.
|
39512
|
+
<h4 class="subsection">6.714.1 Message body</h4>
|
39546
39513
|
|
39547
39514
|
<p>The result of conversion to signed integer type in integer expression is not express by a signed type.
|
39548
39515
|
|
39549
|
-
<h4 class="subsection">6.
|
39516
|
+
<h4 class="subsection">6.714.2 Content</h4>
|
39550
39517
|
|
39551
39518
|
<p>Under construction.
|
39552
39519
|
|
39553
|
-
<h4 class="subsection">6.
|
39520
|
+
<h4 class="subsection">6.714.3 Sample code</h4>
|
39554
39521
|
|
39555
39522
|
<p>example 1
|
39556
39523
|
<pre class="verbatim">void func(signed int si)
|
@@ -39570,7 +39537,7 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39570
39537
|
}
|
39571
39538
|
</pre>
|
39572
39539
|
|
39573
|
-
<h4 class="subsection">6.
|
39540
|
+
<h4 class="subsection">6.714.4 Related message</h4>
|
39574
39541
|
|
39575
39542
|
<ul>
|
39576
39543
|
<li><a href="#W1049">W1049</a> The result of conversion to signed integer type in integer expression might not be expressed by a signed type.
|
@@ -39578,7 +39545,7 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39578
39545
|
<li><a href="#W1052">W1052</a> The result of arithmetic operation in unsigned type can be going around by overflow.
|
39579
39546
|
</ul>
|
39580
39547
|
|
39581
|
-
<h4 class="subsection">6.
|
39548
|
+
<h4 class="subsection">6.714.5 Since</h4>
|
39582
39549
|
|
39583
39550
|
<p>1.0.0
|
39584
39551
|
|
@@ -39591,19 +39558,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39591
39558
|
|
39592
39559
|
</div>
|
39593
39560
|
|
39594
|
-
<h3 class="section">6.
|
39561
|
+
<h3 class="section">6.715 W1051</h3>
|
39595
39562
|
|
39596
|
-
<p><a name="index-W1051-
|
39563
|
+
<p><a name="index-W1051-750"></a>
|
39597
39564
|
|
39598
|
-
<h4 class="subsection">6.
|
39565
|
+
<h4 class="subsection">6.715.1 Message body</h4>
|
39599
39566
|
|
39600
39567
|
<p>The result of arithmetic operation in unsigned type is going around 0 by overflow.
|
39601
39568
|
|
39602
|
-
<h4 class="subsection">6.
|
39569
|
+
<h4 class="subsection">6.715.2 Content</h4>
|
39603
39570
|
|
39604
39571
|
<p>Under construction.
|
39605
39572
|
|
39606
|
-
<h4 class="subsection">6.
|
39573
|
+
<h4 class="subsection">6.715.3 Sample code</h4>
|
39607
39574
|
|
39608
39575
|
<pre class="verbatim">unsigned int func(unsigned int ui)
|
39609
39576
|
{
|
@@ -39615,7 +39582,7 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39615
39582
|
}
|
39616
39583
|
</pre>
|
39617
39584
|
|
39618
|
-
<h4 class="subsection">6.
|
39585
|
+
<h4 class="subsection">6.715.4 Related message</h4>
|
39619
39586
|
|
39620
39587
|
<ul>
|
39621
39588
|
<li><a href="#W1049">W1049</a> The result of conversion to signed integer type in integer expression might not be expressed by a signed type.
|
@@ -39623,7 +39590,7 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39623
39590
|
<li><a href="#W1052">W1052</a> The result of arithmetic operation in unsigned type can be going around by overflow.
|
39624
39591
|
</ul>
|
39625
39592
|
|
39626
|
-
<h4 class="subsection">6.
|
39593
|
+
<h4 class="subsection">6.715.5 Since</h4>
|
39627
39594
|
|
39628
39595
|
<p>1.0.0
|
39629
39596
|
|
@@ -39636,19 +39603,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39636
39603
|
|
39637
39604
|
</div>
|
39638
39605
|
|
39639
|
-
<h3 class="section">6.
|
39606
|
+
<h3 class="section">6.716 W1052</h3>
|
39640
39607
|
|
39641
|
-
<p><a name="index-W1052-
|
39608
|
+
<p><a name="index-W1052-751"></a>
|
39642
39609
|
|
39643
|
-
<h4 class="subsection">6.
|
39610
|
+
<h4 class="subsection">6.716.1 Message body</h4>
|
39644
39611
|
|
39645
39612
|
<p>The result of arithmetic operation in unsigned type can be going around by overflow.
|
39646
39613
|
|
39647
|
-
<h4 class="subsection">6.
|
39614
|
+
<h4 class="subsection">6.716.2 Content</h4>
|
39648
39615
|
|
39649
39616
|
<p>Under construction.
|
39650
39617
|
|
39651
|
-
<h4 class="subsection">6.
|
39618
|
+
<h4 class="subsection">6.716.3 Sample code</h4>
|
39652
39619
|
|
39653
39620
|
<pre class="verbatim">unsigned int func(unsigned int a, unsigned int b)
|
39654
39621
|
{
|
@@ -39660,7 +39627,7 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39660
39627
|
}
|
39661
39628
|
</pre>
|
39662
39629
|
|
39663
|
-
<h4 class="subsection">6.
|
39630
|
+
<h4 class="subsection">6.716.4 Related message</h4>
|
39664
39631
|
|
39665
39632
|
<ul>
|
39666
39633
|
<li><a href="#W1049">W1049</a> The result of conversion to signed integer type in integer expression might not be expressed by a signed type.
|
@@ -39668,7 +39635,7 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39668
39635
|
<li><a href="#W1051">W1051</a> The result of arithmetic operation in unsigned type is going around 0 by overflow.
|
39669
39636
|
</ul>
|
39670
39637
|
|
39671
|
-
<h4 class="subsection">6.
|
39638
|
+
<h4 class="subsection">6.716.5 Since</h4>
|
39672
39639
|
|
39673
39640
|
<p>1.0.0
|
39674
39641
|
|
@@ -39681,19 +39648,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39681
39648
|
|
39682
39649
|
</div>
|
39683
39650
|
|
39684
|
-
<h3 class="section">6.
|
39651
|
+
<h3 class="section">6.717 W1053</h3>
|
39685
39652
|
|
39686
|
-
<p><a name="index-W1053-
|
39653
|
+
<p><a name="index-W1053-752"></a>
|
39687
39654
|
|
39688
|
-
<h4 class="subsection">6.
|
39655
|
+
<h4 class="subsection">6.717.1 Message body</h4>
|
39689
39656
|
|
39690
39657
|
<p>A numeric constants is passed to an actual argument which formal argument is enumeration type.
|
39691
39658
|
|
39692
|
-
<h4 class="subsection">6.
|
39659
|
+
<h4 class="subsection">6.717.2 Content</h4>
|
39693
39660
|
|
39694
39661
|
<p>Under construction.
|
39695
39662
|
|
39696
|
-
<h4 class="subsection">6.
|
39663
|
+
<h4 class="subsection">6.717.3 Sample code</h4>
|
39697
39664
|
|
39698
39665
|
<pre class="verbatim">enum Color { RED = 1, GREEN = 2, BLUE = 4 };
|
39699
39666
|
|
@@ -39705,7 +39672,7 @@ void func2(void)
|
|
39705
39672
|
}
|
39706
39673
|
</pre>
|
39707
39674
|
|
39708
|
-
<h4 class="subsection">6.
|
39675
|
+
<h4 class="subsection">6.717.4 Related message</h4>
|
39709
39676
|
|
39710
39677
|
<ul>
|
39711
39678
|
<li><a href="#W1054">W1054</a> A non enumeration type expression is substituted for the enumeration type.
|
@@ -39722,7 +39689,7 @@ void func2(void)
|
|
39722
39689
|
<li><a href="#W1065">W1065</a> A value of different enumeration type is used in switch statement where case label is an enumeration type.
|
39723
39690
|
</ul>
|
39724
39691
|
|
39725
|
-
<h4 class="subsection">6.
|
39692
|
+
<h4 class="subsection">6.717.5 Since</h4>
|
39726
39693
|
|
39727
39694
|
<p>1.6.0
|
39728
39695
|
|
@@ -39735,19 +39702,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39735
39702
|
|
39736
39703
|
</div>
|
39737
39704
|
|
39738
|
-
<h3 class="section">6.
|
39705
|
+
<h3 class="section">6.718 W1054</h3>
|
39739
39706
|
|
39740
|
-
<p><a name="index-W1054-
|
39707
|
+
<p><a name="index-W1054-753"></a>
|
39741
39708
|
|
39742
|
-
<h4 class="subsection">6.
|
39709
|
+
<h4 class="subsection">6.718.1 Message body</h4>
|
39743
39710
|
|
39744
39711
|
<p>A non enumeration type expression is substituted for the enumeration type.
|
39745
39712
|
|
39746
|
-
<h4 class="subsection">6.
|
39713
|
+
<h4 class="subsection">6.718.2 Content</h4>
|
39747
39714
|
|
39748
39715
|
<p>Under construction.
|
39749
39716
|
|
39750
|
-
<h4 class="subsection">6.
|
39717
|
+
<h4 class="subsection">6.718.3 Sample code</h4>
|
39751
39718
|
|
39752
39719
|
<pre class="verbatim">enum Color { RED = 1, GREEN = 2, BLUE = 4 };
|
39753
39720
|
|
@@ -39759,7 +39726,7 @@ void func2(void)
|
|
39759
39726
|
}
|
39760
39727
|
</pre>
|
39761
39728
|
|
39762
|
-
<h4 class="subsection">6.
|
39729
|
+
<h4 class="subsection">6.718.4 Related message</h4>
|
39763
39730
|
|
39764
39731
|
<ul>
|
39765
39732
|
<li><a href="#W1053">W1053</a> A numeric constants is passed to an actual argument which formal argument is enumeration type.
|
@@ -39776,7 +39743,7 @@ void func2(void)
|
|
39776
39743
|
<li><a href="#W1065">W1065</a> A value of different enumeration type is used in switch statement where case label is an enumeration type.
|
39777
39744
|
</ul>
|
39778
39745
|
|
39779
|
-
<h4 class="subsection">6.
|
39746
|
+
<h4 class="subsection">6.718.5 Since</h4>
|
39780
39747
|
|
39781
39748
|
<p>1.6.0
|
39782
39749
|
|
@@ -39789,19 +39756,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39789
39756
|
|
39790
39757
|
</div>
|
39791
39758
|
|
39792
|
-
<h3 class="section">6.
|
39759
|
+
<h3 class="section">6.719 W1055</h3>
|
39793
39760
|
|
39794
|
-
<p><a name="index-W1055-
|
39761
|
+
<p><a name="index-W1055-754"></a>
|
39795
39762
|
|
39796
|
-
<h4 class="subsection">6.
|
39763
|
+
<h4 class="subsection">6.719.1 Message body</h4>
|
39797
39764
|
|
39798
39765
|
<p>A non enumeration type expression is returned from the function which return value is enumeration type.
|
39799
39766
|
|
39800
|
-
<h4 class="subsection">6.
|
39767
|
+
<h4 class="subsection">6.719.2 Content</h4>
|
39801
39768
|
|
39802
39769
|
<p>Under construction.
|
39803
39770
|
|
39804
|
-
<h4 class="subsection">6.
|
39771
|
+
<h4 class="subsection">6.719.3 Sample code</h4>
|
39805
39772
|
|
39806
39773
|
<pre class="verbatim">enum Color { RED = 1, GREEN = 2, BLUE = 4 };
|
39807
39774
|
|
@@ -39811,7 +39778,7 @@ enum Color func(void)
|
|
39811
39778
|
}
|
39812
39779
|
</pre>
|
39813
39780
|
|
39814
|
-
<h4 class="subsection">6.
|
39781
|
+
<h4 class="subsection">6.719.4 Related message</h4>
|
39815
39782
|
|
39816
39783
|
<ul>
|
39817
39784
|
<li><a href="#W1053">W1053</a> A numeric constants is passed to an actual argument which formal argument is enumeration type.
|
@@ -39828,7 +39795,7 @@ enum Color func(void)
|
|
39828
39795
|
<li><a href="#W1065">W1065</a> A value of different enumeration type is used in switch statement where case label is an enumeration type.
|
39829
39796
|
</ul>
|
39830
39797
|
|
39831
|
-
<h4 class="subsection">6.
|
39798
|
+
<h4 class="subsection">6.719.5 Since</h4>
|
39832
39799
|
|
39833
39800
|
<p>1.6.0
|
39834
39801
|
|
@@ -39841,19 +39808,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39841
39808
|
|
39842
39809
|
</div>
|
39843
39810
|
|
39844
|
-
<h3 class="section">6.
|
39811
|
+
<h3 class="section">6.720 W1056</h3>
|
39845
39812
|
|
39846
|
-
<p><a name="index-W1056-
|
39813
|
+
<p><a name="index-W1056-755"></a>
|
39847
39814
|
|
39848
|
-
<h4 class="subsection">6.
|
39815
|
+
<h4 class="subsection">6.720.1 Message body</h4>
|
39849
39816
|
|
39850
39817
|
<p>An object of actual argument is different enumeration type which formal argument is enumeration type.
|
39851
39818
|
|
39852
|
-
<h4 class="subsection">6.
|
39819
|
+
<h4 class="subsection">6.720.2 Content</h4>
|
39853
39820
|
|
39854
39821
|
<p>Under construction.
|
39855
39822
|
|
39856
|
-
<h4 class="subsection">6.
|
39823
|
+
<h4 class="subsection">6.720.3 Sample code</h4>
|
39857
39824
|
|
39858
39825
|
<pre class="verbatim">enum Color { RED = 1, GREEN= 2, BLUE = 4 };
|
39859
39826
|
enum Season { SPRING = 1, SUMMER, AUTUMN, WINTER };
|
@@ -39866,7 +39833,7 @@ void func2(enum Season ssn)
|
|
39866
39833
|
}
|
39867
39834
|
</pre>
|
39868
39835
|
|
39869
|
-
<h4 class="subsection">6.
|
39836
|
+
<h4 class="subsection">6.720.4 Related message</h4>
|
39870
39837
|
|
39871
39838
|
<ul>
|
39872
39839
|
<li><a href="#W1053">W1053</a> A numeric constants is passed to an actual argument which formal argument is enumeration type.
|
@@ -39883,7 +39850,7 @@ void func2(enum Season ssn)
|
|
39883
39850
|
<li><a href="#W1065">W1065</a> A value of different enumeration type is used in switch statement where case label is an enumeration type.
|
39884
39851
|
</ul>
|
39885
39852
|
|
39886
|
-
<h4 class="subsection">6.
|
39853
|
+
<h4 class="subsection">6.720.5 Since</h4>
|
39887
39854
|
|
39888
39855
|
<p>1.6.0
|
39889
39856
|
|
@@ -39896,19 +39863,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39896
39863
|
|
39897
39864
|
</div>
|
39898
39865
|
|
39899
|
-
<h3 class="section">6.
|
39866
|
+
<h3 class="section">6.721 W1057</h3>
|
39900
39867
|
|
39901
|
-
<p><a name="index-W1057-
|
39868
|
+
<p><a name="index-W1057-756"></a>
|
39902
39869
|
|
39903
|
-
<h4 class="subsection">6.
|
39870
|
+
<h4 class="subsection">6.721.1 Message body</h4>
|
39904
39871
|
|
39905
39872
|
<p>An enumeration value is substituted for different enumeration type object.
|
39906
39873
|
|
39907
|
-
<h4 class="subsection">6.
|
39874
|
+
<h4 class="subsection">6.721.2 Content</h4>
|
39908
39875
|
|
39909
39876
|
<p>Under construction.
|
39910
39877
|
|
39911
|
-
<h4 class="subsection">6.
|
39878
|
+
<h4 class="subsection">6.721.3 Sample code</h4>
|
39912
39879
|
|
39913
39880
|
<pre class="verbatim">enum Color { RED = 1, GREEN = 2, BLUE = 4 };
|
39914
39881
|
enum Season { SPRING = 1, SUMMER, AUTUMN, WINTER };
|
@@ -39921,7 +39888,7 @@ void func(enum Season ssn)
|
|
39921
39888
|
}
|
39922
39889
|
</pre>
|
39923
39890
|
|
39924
|
-
<h4 class="subsection">6.
|
39891
|
+
<h4 class="subsection">6.721.4 Related message</h4>
|
39925
39892
|
|
39926
39893
|
<ul>
|
39927
39894
|
<li><a href="#W1053">W1053</a> A numeric constants is passed to an actual argument which formal argument is enumeration type.
|
@@ -39938,7 +39905,7 @@ void func(enum Season ssn)
|
|
39938
39905
|
<li><a href="#W1065">W1065</a> A value of different enumeration type is used in switch statement where case label is an enumeration type.
|
39939
39906
|
</ul>
|
39940
39907
|
|
39941
|
-
<h4 class="subsection">6.
|
39908
|
+
<h4 class="subsection">6.721.5 Since</h4>
|
39942
39909
|
|
39943
39910
|
<p>1.6.0
|
39944
39911
|
|
@@ -39951,19 +39918,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
39951
39918
|
|
39952
39919
|
</div>
|
39953
39920
|
|
39954
|
-
<h3 class="section">6.
|
39921
|
+
<h3 class="section">6.722 W1058</h3>
|
39955
39922
|
|
39956
|
-
<p><a name="index-W1058-
|
39923
|
+
<p><a name="index-W1058-757"></a>
|
39957
39924
|
|
39958
|
-
<h4 class="subsection">6.
|
39925
|
+
<h4 class="subsection">6.722.1 Message body</h4>
|
39959
39926
|
|
39960
39927
|
<p>A different enumeration type of value is returned from a function which return value is enumeration type.
|
39961
39928
|
|
39962
|
-
<h4 class="subsection">6.
|
39929
|
+
<h4 class="subsection">6.722.2 Content</h4>
|
39963
39930
|
|
39964
39931
|
<p>Under construction.
|
39965
39932
|
|
39966
|
-
<h4 class="subsection">6.
|
39933
|
+
<h4 class="subsection">6.722.3 Sample code</h4>
|
39967
39934
|
|
39968
39935
|
<pre class="verbatim">enum Color { RED = 1, GREEN = 2, BLUE = 4 };
|
39969
39936
|
enum Season { SPRING = 1, SUMMER, AUTUMN, WINTER };
|
@@ -39974,7 +39941,7 @@ enum Color func(enum Season ssn)
|
|
39974
39941
|
}
|
39975
39942
|
</pre>
|
39976
39943
|
|
39977
|
-
<h4 class="subsection">6.
|
39944
|
+
<h4 class="subsection">6.722.4 Related message</h4>
|
39978
39945
|
|
39979
39946
|
<ul>
|
39980
39947
|
<li><a href="#W1053">W1053</a> A numeric constants is passed to an actual argument which formal argument is enumeration type.
|
@@ -39991,7 +39958,7 @@ enum Color func(enum Season ssn)
|
|
39991
39958
|
<li><a href="#W1065">W1065</a> A value of different enumeration type is used in switch statement where case label is an enumeration type.
|
39992
39959
|
</ul>
|
39993
39960
|
|
39994
|
-
<h4 class="subsection">6.
|
39961
|
+
<h4 class="subsection">6.722.5 Since</h4>
|
39995
39962
|
|
39996
39963
|
<p>1.6.0
|
39997
39964
|
|
@@ -40004,19 +39971,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40004
39971
|
|
40005
39972
|
</div>
|
40006
39973
|
|
40007
|
-
<h3 class="section">6.
|
39974
|
+
<h3 class="section">6.723 W1059</h3>
|
40008
39975
|
|
40009
|
-
<p><a name="index-W1059-
|
39976
|
+
<p><a name="index-W1059-758"></a>
|
40010
39977
|
|
40011
|
-
<h4 class="subsection">6.
|
39978
|
+
<h4 class="subsection">6.723.1 Message body</h4>
|
40012
39979
|
|
40013
39980
|
<p>An enumeration value is passed to actual argument which formal argument is not enumeration type.
|
40014
39981
|
|
40015
|
-
<h4 class="subsection">6.
|
39982
|
+
<h4 class="subsection">6.723.2 Content</h4>
|
40016
39983
|
|
40017
39984
|
<p>Under construction.
|
40018
39985
|
|
40019
|
-
<h4 class="subsection">6.
|
39986
|
+
<h4 class="subsection">6.723.3 Sample code</h4>
|
40020
39987
|
|
40021
39988
|
<pre class="verbatim">enum Color { RED = 1, GREEN = 2, BLUE = 4 };
|
40022
39989
|
|
@@ -40028,7 +39995,7 @@ void func2(enum Color col)
|
|
40028
39995
|
}
|
40029
39996
|
</pre>
|
40030
39997
|
|
40031
|
-
<h4 class="subsection">6.
|
39998
|
+
<h4 class="subsection">6.723.4 Related message</h4>
|
40032
39999
|
|
40033
40000
|
<ul>
|
40034
40001
|
<li><a href="#W1053">W1053</a> A numeric constants is passed to an actual argument which formal argument is enumeration type.
|
@@ -40045,7 +40012,7 @@ void func2(enum Color col)
|
|
40045
40012
|
<li><a href="#W1065">W1065</a> A value of different enumeration type is used in switch statement where case label is an enumeration type.
|
40046
40013
|
</ul>
|
40047
40014
|
|
40048
|
-
<h4 class="subsection">6.
|
40015
|
+
<h4 class="subsection">6.723.5 Since</h4>
|
40049
40016
|
|
40050
40017
|
<p>1.6.0
|
40051
40018
|
|
@@ -40058,19 +40025,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40058
40025
|
|
40059
40026
|
</div>
|
40060
40027
|
|
40061
|
-
<h3 class="section">6.
|
40028
|
+
<h3 class="section">6.724 W1060</h3>
|
40062
40029
|
|
40063
|
-
<p><a name="index-W1060-
|
40030
|
+
<p><a name="index-W1060-759"></a>
|
40064
40031
|
|
40065
|
-
<h4 class="subsection">6.
|
40032
|
+
<h4 class="subsection">6.724.1 Message body</h4>
|
40066
40033
|
|
40067
40034
|
<p>An enumeration value is returned from a function which return value is not enumeration type .
|
40068
40035
|
|
40069
|
-
<h4 class="subsection">6.
|
40036
|
+
<h4 class="subsection">6.724.2 Content</h4>
|
40070
40037
|
|
40071
40038
|
<p>Under construction.
|
40072
40039
|
|
40073
|
-
<h4 class="subsection">6.
|
40040
|
+
<h4 class="subsection">6.724.3 Sample code</h4>
|
40074
40041
|
|
40075
40042
|
<pre class="verbatim">enum Color { RED = 1, GREEN = 2, BLUE = 4 };
|
40076
40043
|
|
@@ -40080,7 +40047,7 @@ int func2(enum Color col)
|
|
40080
40047
|
}
|
40081
40048
|
</pre>
|
40082
40049
|
|
40083
|
-
<h4 class="subsection">6.
|
40050
|
+
<h4 class="subsection">6.724.4 Related message</h4>
|
40084
40051
|
|
40085
40052
|
<ul>
|
40086
40053
|
<li><a href="#W1053">W1053</a> A numeric constants is passed to an actual argument which formal argument is enumeration type.
|
@@ -40097,7 +40064,7 @@ int func2(enum Color col)
|
|
40097
40064
|
<li><a href="#W1065">W1065</a> A value of different enumeration type is used in switch statement where case label is an enumeration type.
|
40098
40065
|
</ul>
|
40099
40066
|
|
40100
|
-
<h4 class="subsection">6.
|
40067
|
+
<h4 class="subsection">6.724.5 Since</h4>
|
40101
40068
|
|
40102
40069
|
<p>1.6.0
|
40103
40070
|
|
@@ -40110,19 +40077,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40110
40077
|
|
40111
40078
|
</div>
|
40112
40079
|
|
40113
|
-
<h3 class="section">6.
|
40080
|
+
<h3 class="section">6.725 W1061</h3>
|
40114
40081
|
|
40115
|
-
<p><a name="index-W1061-
|
40082
|
+
<p><a name="index-W1061-760"></a>
|
40116
40083
|
|
40117
|
-
<h4 class="subsection">6.
|
40084
|
+
<h4 class="subsection">6.725.1 Message body</h4>
|
40118
40085
|
|
40119
40086
|
<p>Non constant expression of non enumeration type is passed to actual argument which formal argument is enumeration type.
|
40120
40087
|
|
40121
|
-
<h4 class="subsection">6.
|
40088
|
+
<h4 class="subsection">6.725.2 Content</h4>
|
40122
40089
|
|
40123
40090
|
<p>Under construction.
|
40124
40091
|
|
40125
|
-
<h4 class="subsection">6.
|
40092
|
+
<h4 class="subsection">6.725.3 Sample code</h4>
|
40126
40093
|
|
40127
40094
|
<pre class="verbatim">enum Color { RED = 1, GREEN = 2, BLUE = 4 };
|
40128
40095
|
|
@@ -40134,7 +40101,7 @@ void func2(int num)
|
|
40134
40101
|
}
|
40135
40102
|
</pre>
|
40136
40103
|
|
40137
|
-
<h4 class="subsection">6.
|
40104
|
+
<h4 class="subsection">6.725.4 Related message</h4>
|
40138
40105
|
|
40139
40106
|
<ul>
|
40140
40107
|
<li><a href="#W1053">W1053</a> A numeric constants is passed to an actual argument which formal argument is enumeration type.
|
@@ -40151,7 +40118,7 @@ void func2(int num)
|
|
40151
40118
|
<li><a href="#W1065">W1065</a> A value of different enumeration type is used in switch statement where case label is an enumeration type.
|
40152
40119
|
</ul>
|
40153
40120
|
|
40154
|
-
<h4 class="subsection">6.
|
40121
|
+
<h4 class="subsection">6.725.5 Since</h4>
|
40155
40122
|
|
40156
40123
|
<p>1.6.0
|
40157
40124
|
|
@@ -40164,19 +40131,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40164
40131
|
|
40165
40132
|
</div>
|
40166
40133
|
|
40167
|
-
<h3 class="section">6.
|
40134
|
+
<h3 class="section">6.726 W1062</h3>
|
40168
40135
|
|
40169
|
-
<p><a name="index-W1062-
|
40136
|
+
<p><a name="index-W1062-761"></a>
|
40170
40137
|
|
40171
|
-
<h4 class="subsection">6.
|
40138
|
+
<h4 class="subsection">6.726.1 Message body</h4>
|
40172
40139
|
|
40173
40140
|
<p>Non constant expression is substituted for the enumeration type object.
|
40174
40141
|
|
40175
|
-
<h4 class="subsection">6.
|
40142
|
+
<h4 class="subsection">6.726.2 Content</h4>
|
40176
40143
|
|
40177
40144
|
<p>Under construction.
|
40178
40145
|
|
40179
|
-
<h4 class="subsection">6.
|
40146
|
+
<h4 class="subsection">6.726.3 Sample code</h4>
|
40180
40147
|
|
40181
40148
|
<pre class="verbatim">enum Color { RED = 1, GREEN = 2, BLUE = 4 };
|
40182
40149
|
|
@@ -40188,7 +40155,7 @@ void func(int num)
|
|
40188
40155
|
}
|
40189
40156
|
</pre>
|
40190
40157
|
|
40191
|
-
<h4 class="subsection">6.
|
40158
|
+
<h4 class="subsection">6.726.4 Related message</h4>
|
40192
40159
|
|
40193
40160
|
<ul>
|
40194
40161
|
<li><a href="#W1053">W1053</a> A numeric constants is passed to an actual argument which formal argument is enumeration type.
|
@@ -40205,7 +40172,7 @@ void func(int num)
|
|
40205
40172
|
<li><a href="#W1065">W1065</a> A value of different enumeration type is used in switch statement where case label is an enumeration type.
|
40206
40173
|
</ul>
|
40207
40174
|
|
40208
|
-
<h4 class="subsection">6.
|
40175
|
+
<h4 class="subsection">6.726.5 Since</h4>
|
40209
40176
|
|
40210
40177
|
<p>1.6.0
|
40211
40178
|
|
@@ -40218,19 +40185,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40218
40185
|
|
40219
40186
|
</div>
|
40220
40187
|
|
40221
|
-
<h3 class="section">6.
|
40188
|
+
<h3 class="section">6.727 W1063</h3>
|
40222
40189
|
|
40223
|
-
<p><a name="index-W1063-
|
40190
|
+
<p><a name="index-W1063-762"></a>
|
40224
40191
|
|
40225
|
-
<h4 class="subsection">6.
|
40192
|
+
<h4 class="subsection">6.727.1 Message body</h4>
|
40226
40193
|
|
40227
40194
|
<p>The return value returned from enumeration type function to non constant expression.
|
40228
40195
|
|
40229
|
-
<h4 class="subsection">6.
|
40196
|
+
<h4 class="subsection">6.727.2 Content</h4>
|
40230
40197
|
|
40231
40198
|
<p>Under construction.
|
40232
40199
|
|
40233
|
-
<h4 class="subsection">6.
|
40200
|
+
<h4 class="subsection">6.727.3 Sample code</h4>
|
40234
40201
|
|
40235
40202
|
<pre class="verbatim">enum Color { RED = 1, GREEN = 2, BLUE = 4 };
|
40236
40203
|
|
@@ -40240,7 +40207,7 @@ enum Color func(int num)
|
|
40240
40207
|
}
|
40241
40208
|
</pre>
|
40242
40209
|
|
40243
|
-
<h4 class="subsection">6.
|
40210
|
+
<h4 class="subsection">6.727.4 Related message</h4>
|
40244
40211
|
|
40245
40212
|
<ul>
|
40246
40213
|
<li><a href="#W1053">W1053</a> A numeric constants is passed to an actual argument which formal argument is enumeration type.
|
@@ -40257,7 +40224,7 @@ enum Color func(int num)
|
|
40257
40224
|
<li><a href="#W1065">W1065</a> A value of different enumeration type is used in switch statement where case label is an enumeration type.
|
40258
40225
|
</ul>
|
40259
40226
|
|
40260
|
-
<h4 class="subsection">6.
|
40227
|
+
<h4 class="subsection">6.727.5 Since</h4>
|
40261
40228
|
|
40262
40229
|
<p>1.6.0
|
40263
40230
|
|
@@ -40270,19 +40237,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40270
40237
|
|
40271
40238
|
</div>
|
40272
40239
|
|
40273
|
-
<h3 class="section">6.
|
40240
|
+
<h3 class="section">6.728 W1064</h3>
|
40274
40241
|
|
40275
|
-
<p><a name="index-W1064-
|
40242
|
+
<p><a name="index-W1064-763"></a>
|
40276
40243
|
|
40277
|
-
<h4 class="subsection">6.
|
40244
|
+
<h4 class="subsection">6.728.1 Message body</h4>
|
40278
40245
|
|
40279
40246
|
<p>A integer constant is used in switch statement where case label is enumeration type.
|
40280
40247
|
|
40281
|
-
<h4 class="subsection">6.
|
40248
|
+
<h4 class="subsection">6.728.2 Content</h4>
|
40282
40249
|
|
40283
40250
|
<p>Under construction.
|
40284
40251
|
|
40285
|
-
<h4 class="subsection">6.
|
40252
|
+
<h4 class="subsection">6.728.3 Sample code</h4>
|
40286
40253
|
|
40287
40254
|
<pre class="verbatim">enum Color { RED, BLUE, GREEN };
|
40288
40255
|
|
@@ -40299,7 +40266,7 @@ int func(enum Color c)
|
|
40299
40266
|
}
|
40300
40267
|
</pre>
|
40301
40268
|
|
40302
|
-
<h4 class="subsection">6.
|
40269
|
+
<h4 class="subsection">6.728.4 Related message</h4>
|
40303
40270
|
|
40304
40271
|
<ul>
|
40305
40272
|
<li><a href="#W1053">W1053</a> A numeric constants is passed to an actual argument which formal argument is enumeration type.
|
@@ -40316,7 +40283,7 @@ int func(enum Color c)
|
|
40316
40283
|
<li><a href="#W1065">W1065</a> A value of different enumeration type is used in switch statement where case label is an enumeration type.
|
40317
40284
|
</ul>
|
40318
40285
|
|
40319
|
-
<h4 class="subsection">6.
|
40286
|
+
<h4 class="subsection">6.728.5 Since</h4>
|
40320
40287
|
|
40321
40288
|
<p>1.4.0
|
40322
40289
|
|
@@ -40329,19 +40296,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40329
40296
|
|
40330
40297
|
</div>
|
40331
40298
|
|
40332
|
-
<h3 class="section">6.
|
40299
|
+
<h3 class="section">6.729 W1065</h3>
|
40333
40300
|
|
40334
|
-
<p><a name="index-W1065-
|
40301
|
+
<p><a name="index-W1065-764"></a>
|
40335
40302
|
|
40336
|
-
<h4 class="subsection">6.
|
40303
|
+
<h4 class="subsection">6.729.1 Message body</h4>
|
40337
40304
|
|
40338
40305
|
<p>A value of different enumeration type is used in switch statement where case label is an enumeration type.
|
40339
40306
|
|
40340
|
-
<h4 class="subsection">6.
|
40307
|
+
<h4 class="subsection">6.729.2 Content</h4>
|
40341
40308
|
|
40342
40309
|
<p>Under construction.
|
40343
40310
|
|
40344
|
-
<h4 class="subsection">6.
|
40311
|
+
<h4 class="subsection">6.729.3 Sample code</h4>
|
40345
40312
|
|
40346
40313
|
<pre class="verbatim">enum Color { RED, BLUE, GREEN };
|
40347
40314
|
enum Fruits { APPLE, BANANA, ORANGE, GRAPE };
|
@@ -40359,7 +40326,7 @@ int func(enum Color c)
|
|
40359
40326
|
}
|
40360
40327
|
</pre>
|
40361
40328
|
|
40362
|
-
<h4 class="subsection">6.
|
40329
|
+
<h4 class="subsection">6.729.4 Related message</h4>
|
40363
40330
|
|
40364
40331
|
<ul>
|
40365
40332
|
<li><a href="#W1053">W1053</a> A numeric constants is passed to an actual argument which formal argument is enumeration type.
|
@@ -40376,7 +40343,7 @@ int func(enum Color c)
|
|
40376
40343
|
<li><a href="#W1064">W1064</a> A integer constant is used in switch statement where case label is enumeration type.
|
40377
40344
|
</ul>
|
40378
40345
|
|
40379
|
-
<h4 class="subsection">6.
|
40346
|
+
<h4 class="subsection">6.729.5 Since</h4>
|
40380
40347
|
|
40381
40348
|
<p>1.4.0
|
40382
40349
|
|
@@ -40389,19 +40356,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40389
40356
|
|
40390
40357
|
</div>
|
40391
40358
|
|
40392
|
-
<h3 class="section">6.
|
40359
|
+
<h3 class="section">6.730 W1066</h3>
|
40393
40360
|
|
40394
|
-
<p><a name="index-W1066-
|
40361
|
+
<p><a name="index-W1066-765"></a>
|
40395
40362
|
|
40396
|
-
<h4 class="subsection">6.
|
40363
|
+
<h4 class="subsection">6.730.1 Message body</h4>
|
40397
40364
|
|
40398
40365
|
<p>A value of the `float' typed compound expression is explicitly converted into a `double' value.
|
40399
40366
|
|
40400
|
-
<h4 class="subsection">6.
|
40367
|
+
<h4 class="subsection">6.730.2 Content</h4>
|
40401
40368
|
|
40402
40369
|
<p>Under construction.
|
40403
40370
|
|
40404
|
-
<h4 class="subsection">6.
|
40371
|
+
<h4 class="subsection">6.730.3 Sample code</h4>
|
40405
40372
|
|
40406
40373
|
<pre class="verbatim">void func(float a)
|
40407
40374
|
{
|
@@ -40409,14 +40376,14 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40409
40376
|
}
|
40410
40377
|
</pre>
|
40411
40378
|
|
40412
|
-
<h4 class="subsection">6.
|
40379
|
+
<h4 class="subsection">6.730.4 Related message</h4>
|
40413
40380
|
|
40414
40381
|
<ul>
|
40415
40382
|
<li><a href="#W1067">W1067</a> A value of the `float' typed compound expression is explicitly converted into a `long double' value.
|
40416
40383
|
<li><a href="#W1068">W1068</a> A value of the `double' typed compound expression is explicitly converted into a `long double' value.
|
40417
40384
|
</ul>
|
40418
40385
|
|
40419
|
-
<h4 class="subsection">6.
|
40386
|
+
<h4 class="subsection">6.730.5 Since</h4>
|
40420
40387
|
|
40421
40388
|
<p>1.14.0
|
40422
40389
|
|
@@ -40429,19 +40396,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40429
40396
|
|
40430
40397
|
</div>
|
40431
40398
|
|
40432
|
-
<h3 class="section">6.
|
40399
|
+
<h3 class="section">6.731 W1067</h3>
|
40433
40400
|
|
40434
|
-
<p><a name="index-W1067-
|
40401
|
+
<p><a name="index-W1067-766"></a>
|
40435
40402
|
|
40436
|
-
<h4 class="subsection">6.
|
40403
|
+
<h4 class="subsection">6.731.1 Message body</h4>
|
40437
40404
|
|
40438
40405
|
<p>A value of the `float' typed compound expression is explicitly converted into a `long double' value.
|
40439
40406
|
|
40440
|
-
<h4 class="subsection">6.
|
40407
|
+
<h4 class="subsection">6.731.2 Content</h4>
|
40441
40408
|
|
40442
40409
|
<p>Under construction.
|
40443
40410
|
|
40444
|
-
<h4 class="subsection">6.
|
40411
|
+
<h4 class="subsection">6.731.3 Sample code</h4>
|
40445
40412
|
|
40446
40413
|
<pre class="verbatim">void func(float a)
|
40447
40414
|
{
|
@@ -40449,14 +40416,14 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40449
40416
|
}
|
40450
40417
|
</pre>
|
40451
40418
|
|
40452
|
-
<h4 class="subsection">6.
|
40419
|
+
<h4 class="subsection">6.731.4 Related message</h4>
|
40453
40420
|
|
40454
40421
|
<ul>
|
40455
40422
|
<li><a href="#W1066">W1066</a> A value of the `float' typed compound expression is explicitly converted into a `double' value.
|
40456
40423
|
<li><a href="#W1068">W1068</a> A value of the `double' typed compound expression is explicitly converted into a `long double' value.
|
40457
40424
|
</ul>
|
40458
40425
|
|
40459
|
-
<h4 class="subsection">6.
|
40426
|
+
<h4 class="subsection">6.731.5 Since</h4>
|
40460
40427
|
|
40461
40428
|
<p>1.14.0
|
40462
40429
|
|
@@ -40469,19 +40436,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40469
40436
|
|
40470
40437
|
</div>
|
40471
40438
|
|
40472
|
-
<h3 class="section">6.
|
40439
|
+
<h3 class="section">6.732 W1068</h3>
|
40473
40440
|
|
40474
|
-
<p><a name="index-W1068-
|
40441
|
+
<p><a name="index-W1068-767"></a>
|
40475
40442
|
|
40476
|
-
<h4 class="subsection">6.
|
40443
|
+
<h4 class="subsection">6.732.1 Message body</h4>
|
40477
40444
|
|
40478
40445
|
<p>A value of the `double' typed compound expression is explicitly converted into a `long double' value.
|
40479
40446
|
|
40480
|
-
<h4 class="subsection">6.
|
40447
|
+
<h4 class="subsection">6.732.2 Content</h4>
|
40481
40448
|
|
40482
40449
|
<p>Under construction.
|
40483
40450
|
|
40484
|
-
<h4 class="subsection">6.
|
40451
|
+
<h4 class="subsection">6.732.3 Sample code</h4>
|
40485
40452
|
|
40486
40453
|
<pre class="verbatim">void func(double a)
|
40487
40454
|
{
|
@@ -40489,14 +40456,14 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40489
40456
|
}
|
40490
40457
|
</pre>
|
40491
40458
|
|
40492
|
-
<h4 class="subsection">6.
|
40459
|
+
<h4 class="subsection">6.732.4 Related message</h4>
|
40493
40460
|
|
40494
40461
|
<ul>
|
40495
40462
|
<li><a href="#W1066">W1066</a> A value of the `float' typed compound expression is explicitly converted into a `double' value.
|
40496
40463
|
<li><a href="#W1067">W1067</a> A value of the `float' typed compound expression is explicitly converted into a `long double' value.
|
40497
40464
|
</ul>
|
40498
40465
|
|
40499
|
-
<h4 class="subsection">6.
|
40466
|
+
<h4 class="subsection">6.732.5 Since</h4>
|
40500
40467
|
|
40501
40468
|
<p>1.14.0
|
40502
40469
|
|
@@ -40509,19 +40476,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40509
40476
|
|
40510
40477
|
</div>
|
40511
40478
|
|
40512
|
-
<h3 class="section">6.
|
40479
|
+
<h3 class="section">6.733 W1069</h3>
|
40513
40480
|
|
40514
|
-
<p><a name="index-W1069-
|
40481
|
+
<p><a name="index-W1069-768"></a>
|
40515
40482
|
|
40516
|
-
<h4 class="subsection">6.
|
40483
|
+
<h4 class="subsection">6.733.1 Message body</h4>
|
40517
40484
|
|
40518
40485
|
<p>No trailing `else' clause is found in this `if-else-if' statements chain.
|
40519
40486
|
|
40520
|
-
<h4 class="subsection">6.
|
40487
|
+
<h4 class="subsection">6.733.2 Content</h4>
|
40521
40488
|
|
40522
40489
|
<p>Under construction.
|
40523
40490
|
|
40524
|
-
<h4 class="subsection">6.
|
40491
|
+
<h4 class="subsection">6.733.3 Sample code</h4>
|
40525
40492
|
|
40526
40493
|
<pre class="verbatim">static int func(int i)
|
40527
40494
|
{
|
@@ -40535,11 +40502,11 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40535
40502
|
}
|
40536
40503
|
</pre>
|
40537
40504
|
|
40538
|
-
<h4 class="subsection">6.
|
40505
|
+
<h4 class="subsection">6.733.4 Related message</h4>
|
40539
40506
|
|
40540
40507
|
<p>None.
|
40541
40508
|
|
40542
|
-
<h4 class="subsection">6.
|
40509
|
+
<h4 class="subsection">6.733.5 Since</h4>
|
40543
40510
|
|
40544
40511
|
<p>1.14.0
|
40545
40512
|
|
@@ -40552,19 +40519,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40552
40519
|
|
40553
40520
|
</div>
|
40554
40521
|
|
40555
|
-
<h3 class="section">6.
|
40522
|
+
<h3 class="section">6.734 W1070</h3>
|
40556
40523
|
|
40557
|
-
<p><a name="index-W1070-
|
40524
|
+
<p><a name="index-W1070-769"></a>
|
40558
40525
|
|
40559
|
-
<h4 class="subsection">6.
|
40526
|
+
<h4 class="subsection">6.734.1 Message body</h4>
|
40560
40527
|
|
40561
40528
|
<p>This `switch' statement can be translated into `if-else' statement because there are only 2 execution paths.
|
40562
40529
|
|
40563
|
-
<h4 class="subsection">6.
|
40530
|
+
<h4 class="subsection">6.734.2 Content</h4>
|
40564
40531
|
|
40565
40532
|
<p>Under construction.
|
40566
40533
|
|
40567
|
-
<h4 class="subsection">6.
|
40534
|
+
<h4 class="subsection">6.734.3 Sample code</h4>
|
40568
40535
|
|
40569
40536
|
<pre class="verbatim">switch (x) {
|
40570
40537
|
case 1:
|
@@ -40575,11 +40542,11 @@ default:
|
|
40575
40542
|
}
|
40576
40543
|
</pre>
|
40577
40544
|
|
40578
|
-
<h4 class="subsection">6.
|
40545
|
+
<h4 class="subsection">6.734.4 Related message</h4>
|
40579
40546
|
|
40580
40547
|
<p>None.
|
40581
40548
|
|
40582
|
-
<h4 class="subsection">6.
|
40549
|
+
<h4 class="subsection">6.734.5 Since</h4>
|
40583
40550
|
|
40584
40551
|
<p>1.14.0
|
40585
40552
|
|
@@ -40592,40 +40559,35 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40592
40559
|
|
40593
40560
|
</div>
|
40594
40561
|
|
40595
|
-
<h3 class="section">6.
|
40562
|
+
<h3 class="section">6.735 W1071</h3>
|
40596
40563
|
|
40597
|
-
<p><a name="index-W1071-
|
40564
|
+
<p><a name="index-W1071-770"></a>
|
40598
40565
|
|
40599
|
-
<h4 class="subsection">6.
|
40566
|
+
<h4 class="subsection">6.735.1 Message body</h4>
|
40600
40567
|
|
40601
40568
|
<p>Function `%s' has multiple termination points.
|
40602
40569
|
|
40603
|
-
<h4 class="subsection">6.
|
40604
|
-
|
40605
|
-
<p><b>This message will be supported in AdLint 2.0.0</b>
|
40570
|
+
<h4 class="subsection">6.735.2 Content</h4>
|
40606
40571
|
|
40607
|
-
|
40572
|
+
<p>Under construction.
|
40608
40573
|
|
40609
|
-
<h4 class="subsection">6.
|
40574
|
+
<h4 class="subsection">6.735.3 Sample code</h4>
|
40610
40575
|
|
40611
|
-
<pre class="verbatim">
|
40576
|
+
<pre class="verbatim">void foo(int i) /* W1071 */
|
40612
40577
|
{
|
40613
|
-
if(
|
40614
|
-
return
|
40615
|
-
}
|
40616
|
-
else {
|
40617
|
-
return 1; /* W1071 */
|
40578
|
+
if (i == 0) {
|
40579
|
+
return;
|
40618
40580
|
}
|
40619
40581
|
}
|
40620
40582
|
</pre>
|
40621
40583
|
|
40622
|
-
<h4 class="subsection">6.
|
40584
|
+
<h4 class="subsection">6.735.4 Related message</h4>
|
40623
40585
|
|
40624
40586
|
<p>None.
|
40625
40587
|
|
40626
|
-
<h4 class="subsection">6.
|
40588
|
+
<h4 class="subsection">6.735.5 Since</h4>
|
40627
40589
|
|
40628
|
-
<p>
|
40590
|
+
<p>1.18.0
|
40629
40591
|
|
40630
40592
|
<div class="node">
|
40631
40593
|
<a name="W1072"></a>
|
@@ -40636,19 +40598,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40636
40598
|
|
40637
40599
|
</div>
|
40638
40600
|
|
40639
|
-
<h3 class="section">6.
|
40601
|
+
<h3 class="section">6.736 W1072</h3>
|
40640
40602
|
|
40641
|
-
<p><a name="index-W1072-
|
40603
|
+
<p><a name="index-W1072-771"></a>
|
40642
40604
|
|
40643
|
-
<h4 class="subsection">6.
|
40605
|
+
<h4 class="subsection">6.736.1 Message body</h4>
|
40644
40606
|
|
40645
40607
|
<p>`A `goto' statement is found.
|
40646
40608
|
|
40647
|
-
<h4 class="subsection">6.
|
40609
|
+
<h4 class="subsection">6.736.2 Content</h4>
|
40648
40610
|
|
40649
40611
|
<p>Under construction.
|
40650
40612
|
|
40651
|
-
<h4 class="subsection">6.
|
40613
|
+
<h4 class="subsection">6.736.3 Sample code</h4>
|
40652
40614
|
|
40653
40615
|
<pre class="verbatim">static int func(int i)
|
40654
40616
|
{
|
@@ -40666,11 +40628,11 @@ Label2:
|
|
40666
40628
|
}
|
40667
40629
|
</pre>
|
40668
40630
|
|
40669
|
-
<h4 class="subsection">6.
|
40631
|
+
<h4 class="subsection">6.736.4 Related message</h4>
|
40670
40632
|
|
40671
40633
|
<p>None.
|
40672
40634
|
|
40673
|
-
<h4 class="subsection">6.
|
40635
|
+
<h4 class="subsection">6.736.5 Since</h4>
|
40674
40636
|
|
40675
40637
|
<p>1.14.0
|
40676
40638
|
|
@@ -40683,19 +40645,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40683
40645
|
|
40684
40646
|
</div>
|
40685
40647
|
|
40686
|
-
<h3 class="section">6.
|
40648
|
+
<h3 class="section">6.737 W1073</h3>
|
40687
40649
|
|
40688
|
-
<p><a name="index-W1073-
|
40650
|
+
<p><a name="index-W1073-772"></a>
|
40689
40651
|
|
40690
|
-
<h4 class="subsection">6.
|
40652
|
+
<h4 class="subsection">6.737.1 Message body</h4>
|
40691
40653
|
|
40692
40654
|
<p>A return value of function `%s' is not used.。
|
40693
40655
|
|
40694
|
-
<h4 class="subsection">6.
|
40656
|
+
<h4 class="subsection">6.737.2 Content</h4>
|
40695
40657
|
|
40696
40658
|
<p>Under construction.
|
40697
40659
|
|
40698
|
-
<h4 class="subsection">6.
|
40660
|
+
<h4 class="subsection">6.737.3 Sample code</h4>
|
40699
40661
|
|
40700
40662
|
<pre class="verbatim">extern int bar(void);
|
40701
40663
|
static void foo(void)
|
@@ -40708,11 +40670,11 @@ static void foo(void)
|
|
40708
40670
|
}
|
40709
40671
|
</pre>
|
40710
40672
|
|
40711
|
-
<h4 class="subsection">6.
|
40673
|
+
<h4 class="subsection">6.737.4 Related message</h4>
|
40712
40674
|
|
40713
40675
|
<p>None.
|
40714
40676
|
|
40715
|
-
<h4 class="subsection">6.
|
40677
|
+
<h4 class="subsection">6.737.5 Since</h4>
|
40716
40678
|
|
40717
40679
|
<p>1.16.0
|
40718
40680
|
|
@@ -40725,19 +40687,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40725
40687
|
|
40726
40688
|
</div>
|
40727
40689
|
|
40728
|
-
<h3 class="section">6.
|
40690
|
+
<h3 class="section">6.738 W1074</h3>
|
40729
40691
|
|
40730
|
-
<p><a name="index-W1074-
|
40692
|
+
<p><a name="index-W1074-773"></a>
|
40731
40693
|
|
40732
|
-
<h4 class="subsection">6.
|
40694
|
+
<h4 class="subsection">6.738.1 Message body</h4>
|
40733
40695
|
|
40734
40696
|
<p>Side-effects in `sizeof' operand will not be recorded because the operand will not be executed actually.
|
40735
40697
|
|
40736
|
-
<h4 class="subsection">6.
|
40698
|
+
<h4 class="subsection">6.738.2 Content</h4>
|
40737
40699
|
|
40738
40700
|
<p>Under construction.
|
40739
40701
|
|
40740
|
-
<h4 class="subsection">6.
|
40702
|
+
<h4 class="subsection">6.738.3 Sample code</h4>
|
40741
40703
|
|
40742
40704
|
<pre class="verbatim">static int foo(void)
|
40743
40705
|
{
|
@@ -40752,11 +40714,11 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40752
40714
|
}
|
40753
40715
|
</pre>
|
40754
40716
|
|
40755
|
-
<h4 class="subsection">6.
|
40717
|
+
<h4 class="subsection">6.738.4 Related message</h4>
|
40756
40718
|
|
40757
40719
|
<p>None.
|
40758
40720
|
|
40759
|
-
<h4 class="subsection">6.
|
40721
|
+
<h4 class="subsection">6.738.5 Since</h4>
|
40760
40722
|
|
40761
40723
|
<p>1.16.0
|
40762
40724
|
|
@@ -40769,19 +40731,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40769
40731
|
|
40770
40732
|
</div>
|
40771
40733
|
|
40772
|
-
<h3 class="section">6.
|
40734
|
+
<h3 class="section">6.739 W1075</h3>
|
40773
40735
|
|
40774
|
-
<p><a name="index-W1075-
|
40736
|
+
<p><a name="index-W1075-774"></a>
|
40775
40737
|
|
40776
|
-
<h4 class="subsection">6.
|
40738
|
+
<h4 class="subsection">6.739.1 Message body</h4>
|
40777
40739
|
|
40778
40740
|
<p>This declaration has no `static' storage-class-specifier while the declaring object has internal-linkage.
|
40779
40741
|
|
40780
|
-
<h4 class="subsection">6.
|
40742
|
+
<h4 class="subsection">6.739.2 Content</h4>
|
40781
40743
|
|
40782
40744
|
<p>Under construction.
|
40783
40745
|
|
40784
|
-
<h4 class="subsection">6.
|
40746
|
+
<h4 class="subsection">6.739.3 Sample code</h4>
|
40785
40747
|
|
40786
40748
|
<pre class="verbatim">static int func(void);
|
40787
40749
|
int func(void) /* W1075 */
|
@@ -40790,11 +40752,11 @@ int func(void) /* W1075 */
|
|
40790
40752
|
}
|
40791
40753
|
</pre>
|
40792
40754
|
|
40793
|
-
<h4 class="subsection">6.
|
40755
|
+
<h4 class="subsection">6.739.4 Related message</h4>
|
40794
40756
|
|
40795
40757
|
<p>None.
|
40796
40758
|
|
40797
|
-
<h4 class="subsection">6.
|
40759
|
+
<h4 class="subsection">6.739.5 Since</h4>
|
40798
40760
|
|
40799
40761
|
<p>1.16.0
|
40800
40762
|
|
@@ -40807,19 +40769,19 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40807
40769
|
|
40808
40770
|
</div>
|
40809
40771
|
|
40810
|
-
<h3 class="section">6.
|
40772
|
+
<h3 class="section">6.740 W1076</h3>
|
40811
40773
|
|
40812
|
-
<p><a name="index-W1076-
|
40774
|
+
<p><a name="index-W1076-775"></a>
|
40813
40775
|
|
40814
|
-
<h4 class="subsection">6.
|
40776
|
+
<h4 class="subsection">6.740.1 Message body</h4>
|
40815
40777
|
|
40816
40778
|
<p>`%s' is defined as internal-linkage, but it has no forward declaration.
|
40817
40779
|
|
40818
|
-
<h4 class="subsection">6.
|
40780
|
+
<h4 class="subsection">6.740.2 Content</h4>
|
40819
40781
|
|
40820
40782
|
<p>Under construction.
|
40821
40783
|
|
40822
|
-
<h4 class="subsection">6.
|
40784
|
+
<h4 class="subsection">6.740.3 Sample code</h4>
|
40823
40785
|
|
40824
40786
|
<pre class="verbatim">static int func(void) /* W1076 */
|
40825
40787
|
{
|
@@ -40827,11 +40789,11 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40827
40789
|
}
|
40828
40790
|
</pre>
|
40829
40791
|
|
40830
|
-
<h4 class="subsection">6.
|
40792
|
+
<h4 class="subsection">6.740.4 Related message</h4>
|
40831
40793
|
|
40832
40794
|
<p>None.
|
40833
40795
|
|
40834
|
-
<h4 class="subsection">6.
|
40796
|
+
<h4 class="subsection">6.740.5 Since</h4>
|
40835
40797
|
|
40836
40798
|
<p>1.16.0
|
40837
40799
|
|
@@ -40844,28 +40806,28 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40844
40806
|
|
40845
40807
|
</div>
|
40846
40808
|
|
40847
|
-
<h3 class="section">6.
|
40809
|
+
<h3 class="section">6.741 W1077</h3>
|
40848
40810
|
|
40849
|
-
<p><a name="index-W1077-
|
40811
|
+
<p><a name="index-W1077-776"></a>
|
40850
40812
|
|
40851
|
-
<h4 class="subsection">6.
|
40813
|
+
<h4 class="subsection">6.741.1 Message body</h4>
|
40852
40814
|
|
40853
40815
|
<p>Declaring array object without a size.
|
40854
40816
|
|
40855
|
-
<h4 class="subsection">6.
|
40817
|
+
<h4 class="subsection">6.741.2 Content</h4>
|
40856
40818
|
|
40857
40819
|
<p>Under construction.
|
40858
40820
|
|
40859
|
-
<h4 class="subsection">6.
|
40821
|
+
<h4 class="subsection">6.741.3 Sample code</h4>
|
40860
40822
|
|
40861
40823
|
<pre class="verbatim">extern int a[]; /* W1077 */
|
40862
40824
|
</pre>
|
40863
40825
|
|
40864
|
-
<h4 class="subsection">6.
|
40826
|
+
<h4 class="subsection">6.741.4 Related message</h4>
|
40865
40827
|
|
40866
40828
|
<p>None.
|
40867
40829
|
|
40868
|
-
<h4 class="subsection">6.
|
40830
|
+
<h4 class="subsection">6.741.5 Since</h4>
|
40869
40831
|
|
40870
40832
|
<p>1.16.0
|
40871
40833
|
|
@@ -40878,17 +40840,17 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40878
40840
|
|
40879
40841
|
</div>
|
40880
40842
|
|
40881
|
-
<h3 class="section">6.
|
40843
|
+
<h3 class="section">6.742 W9001</h3>
|
40882
40844
|
|
40883
|
-
<h4 class="subsection">6.
|
40845
|
+
<h4 class="subsection">6.742.1 Message body</h4>
|
40884
40846
|
|
40885
40847
|
<p>This statement doesn't reach the control.
|
40886
40848
|
|
40887
|
-
<h4 class="subsection">6.
|
40849
|
+
<h4 class="subsection">6.742.2 Content</h4>
|
40888
40850
|
|
40889
40851
|
<p>Under construction.
|
40890
40852
|
|
40891
|
-
<h4 class="subsection">6.
|
40853
|
+
<h4 class="subsection">6.742.3 Sample code</h4>
|
40892
40854
|
|
40893
40855
|
<pre class="verbatim">extern int all_possible_values_of_int(void);
|
40894
40856
|
extern unsigned int zero_if_succeeded(void);
|
@@ -40925,11 +40887,11 @@ void func(void)
|
|
40925
40887
|
}
|
40926
40888
|
</pre>
|
40927
40889
|
|
40928
|
-
<h4 class="subsection">6.
|
40890
|
+
<h4 class="subsection">6.742.4 Related message</h4>
|
40929
40891
|
|
40930
40892
|
<p>None.
|
40931
40893
|
|
40932
|
-
<h4 class="subsection">6.
|
40894
|
+
<h4 class="subsection">6.742.5 Since</h4>
|
40933
40895
|
|
40934
40896
|
<p>1.0.0
|
40935
40897
|
|
@@ -40942,27 +40904,27 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40942
40904
|
|
40943
40905
|
</div>
|
40944
40906
|
|
40945
|
-
<h3 class="section">6.
|
40907
|
+
<h3 class="section">6.743 W9002</h3>
|
40946
40908
|
|
40947
|
-
<p><a name="index-W9002-
|
40909
|
+
<p><a name="index-W9002-777"></a>
|
40948
40910
|
|
40949
|
-
<h4 class="subsection">6.
|
40911
|
+
<h4 class="subsection">6.743.1 Message body</h4>
|
40950
40912
|
|
40951
40913
|
<p>There is no line feed character at the end of file.
|
40952
40914
|
|
40953
|
-
<h4 class="subsection">6.
|
40915
|
+
<h4 class="subsection">6.743.2 Content</h4>
|
40954
40916
|
|
40955
40917
|
<p>Under construction.
|
40956
40918
|
|
40957
|
-
<h4 class="subsection">6.
|
40919
|
+
<h4 class="subsection">6.743.3 Sample code</h4>
|
40958
40920
|
|
40959
40921
|
<p>Under construction.
|
40960
40922
|
|
40961
|
-
<h4 class="subsection">6.
|
40923
|
+
<h4 class="subsection">6.743.4 Related message</h4>
|
40962
40924
|
|
40963
40925
|
<p>None.
|
40964
40926
|
|
40965
|
-
<h4 class="subsection">6.
|
40927
|
+
<h4 class="subsection">6.743.5 Since</h4>
|
40966
40928
|
|
40967
40929
|
<p>1.0.0
|
40968
40930
|
|
@@ -40975,20 +40937,20 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
40975
40937
|
|
40976
40938
|
</div>
|
40977
40939
|
|
40978
|
-
<h3 class="section">6.
|
40940
|
+
<h3 class="section">6.744 W9003</h3>
|
40979
40941
|
|
40980
|
-
<p><a name="index-W9003-
|
40942
|
+
<p><a name="index-W9003-778"></a>
|
40981
40943
|
|
40982
|
-
<h4 class="subsection">6.
|
40944
|
+
<h4 class="subsection">6.744.1 Message body</h4>
|
40983
40945
|
|
40984
40946
|
<p>An object typed `%s' is implicitly converted into an object of other type.
|
40985
40947
|
|
40986
|
-
<h4 class="subsection">6.
|
40948
|
+
<h4 class="subsection">6.744.2 Content</h4>
|
40987
40949
|
|
40988
40950
|
<p>This message indicates that an implicit conversion from or to an object of the
|
40989
40951
|
non-standard type will occur.
|
40990
40952
|
|
40991
|
-
<h4 class="subsection">6.
|
40953
|
+
<h4 class="subsection">6.744.3 Sample code</h4>
|
40992
40954
|
|
40993
40955
|
<pre class="verbatim">enum Color { RED, BLUE, GREEN };
|
40994
40956
|
enum Fruit { APPLE, BANANA, ORANGE };
|
@@ -41002,11 +40964,11 @@ static void bar(void)
|
|
41002
40964
|
}
|
41003
40965
|
</pre>
|
41004
40966
|
|
41005
|
-
<h4 class="subsection">6.
|
40967
|
+
<h4 class="subsection">6.744.4 Related message</h4>
|
41006
40968
|
|
41007
40969
|
<p>None.
|
41008
40970
|
|
41009
|
-
<h4 class="subsection">6.
|
40971
|
+
<h4 class="subsection">6.744.5 Since</h4>
|
41010
40972
|
|
41011
40973
|
<p>1.12.0
|
41012
40974
|
|
@@ -41018,32 +40980,32 @@ Up: <a rel="up" accesskey="u" href="#Messages">Messages</a>
|
|
41018
40980
|
|
41019
40981
|
</div>
|
41020
40982
|
|
41021
|
-
<h3 class="section">6.
|
40983
|
+
<h3 class="section">6.745 C0001</h3>
|
41022
40984
|
|
41023
|
-
<p><a name="index-C0001-
|
40985
|
+
<p><a name="index-C0001-779"></a>
|
41024
40986
|
|
41025
|
-
<h4 class="subsection">6.
|
40987
|
+
<h4 class="subsection">6.745.1 Message body</h4>
|
41026
40988
|
|
41027
40989
|
<p>A warning is detected in external identifier name `%s'.
|
41028
40990
|
|
41029
|
-
<h4 class="subsection">6.
|
40991
|
+
<h4 class="subsection">6.745.2 Content</h4>
|
41030
40992
|
|
41031
40993
|
<p>Under construction.
|
41032
40994
|
|
41033
|
-
<h4 class="subsection">6.
|
40995
|
+
<h4 class="subsection">6.745.3 Sample code</h4>
|
41034
40996
|
|
41035
40997
|
<pre class="verbatim">int very_long_long_long_long_long_long_long_identifier_1 = 0; /* C0001 */
|
41036
40998
|
int very_long_long_long_long_long_long_long_identifier_2 = 1; /* W0052 */
|
41037
40999
|
</pre>
|
41038
41000
|
|
41039
|
-
<h4 class="subsection">6.
|
41001
|
+
<h4 class="subsection">6.745.4 Related message</h4>
|
41040
41002
|
|
41041
41003
|
<ul>
|
41042
41004
|
<li><a href="#W0051">W0051</a> An external identifier name cannot distinguish other identifier name (ex:`%s') from the range of number of characters defined in linker property.
|
41043
41005
|
<li><a href="#W0052">W0052</a> A identifier name cannot distinguish other identifier name (ex:`%s') from the range of number of characters defined in compile property.
|
41044
41006
|
</ul>
|
41045
41007
|
|
41046
|
-
<h4 class="subsection">6.
|
41008
|
+
<h4 class="subsection">6.745.5 Since</h4>
|
41047
41009
|
|
41048
41010
|
<p>1.0.0
|
41049
41011
|
|
@@ -41087,7 +41049,7 @@ Up: <a rel="up" accesskey="u" href="#Metrics">Metrics</a>
|
|
41087
41049
|
|
41088
41050
|
<h3 class="section">7.1 FL_STMT</h3>
|
41089
41051
|
|
41090
|
-
<p><a name="index-FL_005fSTMT-
|
41052
|
+
<p><a name="index-FL_005fSTMT-780"></a>
|
41091
41053
|
|
41092
41054
|
<h4 class="subsection">7.1.1 Metric name</h4>
|
41093
41055
|
|
@@ -41158,7 +41120,7 @@ Up: <a rel="up" accesskey="u" href="#Metrics">Metrics</a>
|
|
41158
41120
|
|
41159
41121
|
<h3 class="section">7.2 FL_FUNC</h3>
|
41160
41122
|
|
41161
|
-
<p><a name="index-FL_005fFUNC-
|
41123
|
+
<p><a name="index-FL_005fFUNC-781"></a>
|
41162
41124
|
|
41163
41125
|
<h4 class="subsection">7.2.1 Metric name</h4>
|
41164
41126
|
|
@@ -41203,7 +41165,7 @@ Up: <a rel="up" accesskey="u" href="#Metrics">Metrics</a>
|
|
41203
41165
|
|
41204
41166
|
<h3 class="section">7.3 FN_STMT</h3>
|
41205
41167
|
|
41206
|
-
<p><a name="index-FN_005fSTMT-
|
41168
|
+
<p><a name="index-FN_005fSTMT-782"></a>
|
41207
41169
|
|
41208
41170
|
<h4 class="subsection">7.3.1 Metric name</h4>
|
41209
41171
|
|
@@ -41275,7 +41237,7 @@ Up: <a rel="up" accesskey="u" href="#Metrics">Metrics</a>
|
|
41275
41237
|
|
41276
41238
|
<h3 class="section">7.4 FN_UNRC</h3>
|
41277
41239
|
|
41278
|
-
<p><a name="index-FN_005fUNRC-
|
41240
|
+
<p><a name="index-FN_005fUNRC-783"></a>
|
41279
41241
|
|
41280
41242
|
<h4 class="subsection">7.4.1 Metric name</h4>
|
41281
41243
|
|
@@ -41354,7 +41316,7 @@ Up: <a rel="up" accesskey="u" href="#Metrics">Metrics</a>
|
|
41354
41316
|
|
41355
41317
|
<h3 class="section">7.5 FN_LINE</h3>
|
41356
41318
|
|
41357
|
-
<p><a name="index-FN_005fLINE-
|
41319
|
+
<p><a name="index-FN_005fLINE-784"></a>
|
41358
41320
|
|
41359
41321
|
<h4 class="subsection">7.5.1 Metric name</h4>
|
41360
41322
|
|
@@ -41413,7 +41375,7 @@ Up: <a rel="up" accesskey="u" href="#Metrics">Metrics</a>
|
|
41413
41375
|
|
41414
41376
|
<h3 class="section">7.6 FN_PARA</h3>
|
41415
41377
|
|
41416
|
-
<p><a name="index-FN_005fPARA-
|
41378
|
+
<p><a name="index-FN_005fPARA-785"></a>
|
41417
41379
|
|
41418
41380
|
<h4 class="subsection">7.6.1 Metric name</h4>
|
41419
41381
|
|
@@ -41459,7 +41421,7 @@ Up: <a rel="up" accesskey="u" href="#Metrics">Metrics</a>
|
|
41459
41421
|
|
41460
41422
|
<h3 class="section">7.7 FN_UNUV</h3>
|
41461
41423
|
|
41462
|
-
<p><a name="index-FN_005fUNUV-
|
41424
|
+
<p><a name="index-FN_005fUNUV-786"></a>
|
41463
41425
|
|
41464
41426
|
<h4 class="subsection">7.7.1 Metric name</h4>
|
41465
41427
|
|
@@ -41509,7 +41471,7 @@ Up: <a rel="up" accesskey="u" href="#Metrics">Metrics</a>
|
|
41509
41471
|
|
41510
41472
|
<h3 class="section">7.8 FN_CSUB</h3>
|
41511
41473
|
|
41512
|
-
<p><a name="index-FN_005fCSUB-
|
41474
|
+
<p><a name="index-FN_005fCSUB-787"></a>
|
41513
41475
|
|
41514
41476
|
<h4 class="subsection">7.8.1 Metric name</h4>
|
41515
41477
|
|
@@ -41602,7 +41564,7 @@ Up: <a rel="up" accesskey="u" href="#Metrics">Metrics</a>
|
|
41602
41564
|
|
41603
41565
|
<h3 class="section">7.10 FN_GOTO</h3>
|
41604
41566
|
|
41605
|
-
<p><a name="index-FN_005fGOTO-
|
41567
|
+
<p><a name="index-FN_005fGOTO-788"></a>
|
41606
41568
|
|
41607
41569
|
<h4 class="subsection">7.10.1 Metric name</h4>
|
41608
41570
|
|
@@ -41653,7 +41615,7 @@ Up: <a rel="up" accesskey="u" href="#Metrics">Metrics</a>
|
|
41653
41615
|
|
41654
41616
|
<h3 class="section">7.11 FN_RETN</h3>
|
41655
41617
|
|
41656
|
-
<p><a name="index-FN_005fRETN-
|
41618
|
+
<p><a name="index-FN_005fRETN-789"></a>
|
41657
41619
|
|
41658
41620
|
<h4 class="subsection">7.11.1 Metric name</h4>
|
41659
41621
|
|
@@ -41726,7 +41688,7 @@ Up: <a rel="up" accesskey="u" href="#Metrics">Metrics</a>
|
|
41726
41688
|
|
41727
41689
|
<h3 class="section">7.12 FN_UELS</h3>
|
41728
41690
|
|
41729
|
-
<p><a name="index-FN_005fUELS-
|
41691
|
+
<p><a name="index-FN_005fUELS-790"></a>
|
41730
41692
|
|
41731
41693
|
<h4 class="subsection">7.12.1 Metric name</h4>
|
41732
41694
|
|
@@ -41786,7 +41748,7 @@ Up: <a rel="up" accesskey="u" href="#Metrics">Metrics</a>
|
|
41786
41748
|
|
41787
41749
|
<h3 class="section">7.13 FN_NEST</h3>
|
41788
41750
|
|
41789
|
-
<p><a name="index-FN_005fNEST-
|
41751
|
+
<p><a name="index-FN_005fNEST-791"></a>
|
41790
41752
|
|
41791
41753
|
<h4 class="subsection">7.13.1 Metric name</h4>
|
41792
41754
|
|
@@ -41857,7 +41819,7 @@ Up: <a rel="up" accesskey="u" href="#Metrics">Metrics</a>
|
|
41857
41819
|
|
41858
41820
|
<h3 class="section">7.14 FN_PATH</h3>
|
41859
41821
|
|
41860
|
-
<p><a name="index-FN_005fPATH-
|
41822
|
+
<p><a name="index-FN_005fPATH-792"></a>
|
41861
41823
|
|
41862
41824
|
<h4 class="subsection">7.14.1 Metric name</h4>
|
41863
41825
|
|
@@ -42014,7 +41976,7 @@ Up: <a rel="up" accesskey="u" href="#Metrics">Metrics</a>
|
|
42014
41976
|
|
42015
41977
|
<h3 class="section">7.15 FN_CYCM</h3>
|
42016
41978
|
|
42017
|
-
<p><a name="index-FN_005fCYCM-
|
41979
|
+
<p><a name="index-FN_005fCYCM-793"></a>
|
42018
41980
|
|
42019
41981
|
<h4 class="subsection">7.15.1 Metric name</h4>
|
42020
41982
|
|
@@ -42155,7 +42117,7 @@ Up: <a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
|
|
42155
42117
|
|
42156
42118
|
<h3 class="section">8.1 VER</h3>
|
42157
42119
|
|
42158
|
-
<p><a name="index-VER-
|
42120
|
+
<p><a name="index-VER-794"></a>
|
42159
42121
|
|
42160
42122
|
<h4 class="subsection">8.1.1 Code structure information name</h4>
|
42161
42123
|
|
@@ -42185,7 +42147,7 @@ Up: <a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
|
|
42185
42147
|
|
42186
42148
|
<h3 class="section">8.2 DCL(T)</h3>
|
42187
42149
|
|
42188
|
-
<p><a name="index-DCL_0028T_0029-
|
42150
|
+
<p><a name="index-DCL_0028T_0029-795"></a>
|
42189
42151
|
|
42190
42152
|
<h4 class="subsection">8.2.1 Code structure information name</h4>
|
42191
42153
|
|
@@ -42215,7 +42177,7 @@ Up: <a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
|
|
42215
42177
|
|
42216
42178
|
<h3 class="section">8.3 DCL(V)</h3>
|
42217
42179
|
|
42218
|
-
<p><a name="index-DCL_0028V_0029-
|
42180
|
+
<p><a name="index-DCL_0028V_0029-796"></a>
|
42219
42181
|
|
42220
42182
|
<h4 class="subsection">8.3.1 Code structure information name</h4>
|
42221
42183
|
|
@@ -42245,7 +42207,7 @@ Up: <a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
|
|
42245
42207
|
|
42246
42208
|
<h3 class="section">8.4 DCL(F)</h3>
|
42247
42209
|
|
42248
|
-
<p><a name="index-DCL_0028F_0029-
|
42210
|
+
<p><a name="index-DCL_0028F_0029-797"></a>
|
42249
42211
|
|
42250
42212
|
<h4 class="subsection">8.4.1 Code structure information name</h4>
|
42251
42213
|
|
@@ -42275,7 +42237,7 @@ Up: <a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
|
|
42275
42237
|
|
42276
42238
|
<h3 class="section">8.5 DEF(V)</h3>
|
42277
42239
|
|
42278
|
-
<p><a name="index-DEF_0028V_0029-
|
42240
|
+
<p><a name="index-DEF_0028V_0029-798"></a>
|
42279
42241
|
|
42280
42242
|
<h4 class="subsection">8.5.1 Code structure information name</h4>
|
42281
42243
|
|
@@ -42305,7 +42267,7 @@ Up: <a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
|
|
42305
42267
|
|
42306
42268
|
<h3 class="section">8.6 DEF(F)</h3>
|
42307
42269
|
|
42308
|
-
<p><a name="index-DEF_0028F_0029-
|
42270
|
+
<p><a name="index-DEF_0028F_0029-799"></a>
|
42309
42271
|
|
42310
42272
|
<h4 class="subsection">8.6.1 Code structure information name</h4>
|
42311
42273
|
|
@@ -42335,7 +42297,7 @@ Up: <a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
|
|
42335
42297
|
|
42336
42298
|
<h3 class="section">8.7 DEF(M)</h3>
|
42337
42299
|
|
42338
|
-
<p><a name="index-DEF_0028M_0029-
|
42300
|
+
<p><a name="index-DEF_0028M_0029-800"></a>
|
42339
42301
|
|
42340
42302
|
<h4 class="subsection">8.7.1 Code structure information name</h4>
|
42341
42303
|
|
@@ -42365,7 +42327,7 @@ Up: <a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
|
|
42365
42327
|
|
42366
42328
|
<h3 class="section">8.8 DEF(L)</h3>
|
42367
42329
|
|
42368
|
-
<p><a name="index-DEF_0028L_0029-
|
42330
|
+
<p><a name="index-DEF_0028L_0029-801"></a>
|
42369
42331
|
|
42370
42332
|
<h4 class="subsection">8.8.1 Code structure information name</h4>
|
42371
42333
|
|
@@ -42394,7 +42356,7 @@ Up: <a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
|
|
42394
42356
|
|
42395
42357
|
<h3 class="section">8.9 INI</h3>
|
42396
42358
|
|
42397
|
-
<p><a name="index-INI-
|
42359
|
+
<p><a name="index-INI-802"></a>
|
42398
42360
|
|
42399
42361
|
<h4 class="subsection">8.9.1 Code structure information name</h4>
|
42400
42362
|
|
@@ -42423,7 +42385,7 @@ Up: <a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
|
|
42423
42385
|
|
42424
42386
|
<h3 class="section">8.10 ASN</h3>
|
42425
42387
|
|
42426
|
-
<p><a name="index-ASN-
|
42388
|
+
<p><a name="index-ASN-803"></a>
|
42427
42389
|
|
42428
42390
|
<h4 class="subsection">8.10.1 Code structure information name</h4>
|
42429
42391
|
|
@@ -42453,7 +42415,7 @@ Up: <a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
|
|
42453
42415
|
|
42454
42416
|
<h3 class="section">8.11 DEP(I)</h3>
|
42455
42417
|
|
42456
|
-
<p><a name="index-DEP_0028I_0029-
|
42418
|
+
<p><a name="index-DEP_0028I_0029-804"></a>
|
42457
42419
|
|
42458
42420
|
<h4 class="subsection">8.11.1 Code structure information name</h4>
|
42459
42421
|
|
@@ -42483,7 +42445,7 @@ Up: <a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
|
|
42483
42445
|
|
42484
42446
|
<h3 class="section">8.12 DEP(C)</h3>
|
42485
42447
|
|
42486
|
-
<p><a name="index-DEP_0028C_0029-
|
42448
|
+
<p><a name="index-DEP_0028C_0029-805"></a>
|
42487
42449
|
|
42488
42450
|
<h4 class="subsection">8.12.1 Code structure information name</h4>
|
42489
42451
|
|
@@ -42513,7 +42475,7 @@ Up: <a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
|
|
42513
42475
|
|
42514
42476
|
<h3 class="section">8.13 DEP(X)</h3>
|
42515
42477
|
|
42516
|
-
<p><a name="index-DEP_0028X_0029-
|
42478
|
+
<p><a name="index-DEP_0028X_0029-806"></a>
|
42517
42479
|
|
42518
42480
|
<h4 class="subsection">8.13.1 Code structure information name</h4>
|
42519
42481
|
|
@@ -42542,7 +42504,7 @@ Up: <a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
|
|
42542
42504
|
|
42543
42505
|
<h3 class="section">8.14 LIT</h3>
|
42544
42506
|
|
42545
|
-
<p><a name="index-LIT-
|
42507
|
+
<p><a name="index-LIT-807"></a>
|
42546
42508
|
|
42547
42509
|
<h4 class="subsection">8.14.1 Code structure information name</h4>
|
42548
42510
|
|
@@ -42570,7 +42532,7 @@ Up: <a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
|
|
42570
42532
|
|
42571
42533
|
<h3 class="section">8.15 PRE</h3>
|
42572
42534
|
|
42573
|
-
<p><a name="index-PRE-
|
42535
|
+
<p><a name="index-PRE-808"></a>
|
42574
42536
|
|
42575
42537
|
<h4 class="subsection">8.15.1 Code structure information name</h4>
|
42576
42538
|
|
@@ -43047,8 +43009,8 @@ Up: <a rel="up" accesskey="u" href="#Top">Top</a>
|
|
43047
43009
|
<h2 class="unnumbered">Index</h2>
|
43048
43010
|
|
43049
43011
|
<ul class="index-cp" compact>
|
43050
|
-
<li><a href="#index-ASN-
|
43051
|
-
<li><a href="#index-C0001-
|
43012
|
+
<li><a href="#index-ASN-803">ASN</a>: <a href="#ASN">ASN</a></li>
|
43013
|
+
<li><a href="#index-C0001-779">C0001</a>: <a href="#C0001">C0001</a></li>
|
43052
43014
|
<li><a href="#index-compiler_005ftraits-9">compiler_traits</a>: <a href="#Compiler-Traits">Compiler Traits</a></li>
|
43053
43015
|
<li><a href="#index-compiler_005ftraits_003aarbitrary_005fsubstitution-35">compiler_traits:arbitrary_substitution</a>: <a href="#Compiler-Traits">Compiler Traits</a></li>
|
43054
43016
|
<li><a href="#index-compiler_005ftraits_003aarithmetic_003alogical_005fright_005fshift-33">compiler_traits:arithmetic:logical_right_shift</a>: <a href="#Compiler-Traits">Compiler Traits</a></li>
|
@@ -43077,16 +43039,16 @@ Up: <a rel="up" accesskey="u" href="#Top">Top</a>
|
|
43077
43039
|
<li><a href="#index-compiler_005ftraits_003astandard_005ftype_003along_005fsize-17">compiler_traits:standard_type:long_size</a>: <a href="#Compiler-Traits">Compiler Traits</a></li>
|
43078
43040
|
<li><a href="#index-compiler_005ftraits_003astandard_005ftype_003ashort_005falignment-14">compiler_traits:standard_type:short_alignment</a>: <a href="#Compiler-Traits">Compiler Traits</a></li>
|
43079
43041
|
<li><a href="#index-compiler_005ftraits_003astandard_005ftype_003ashort_005fsize-13">compiler_traits:standard_type:short_size</a>: <a href="#Compiler-Traits">Compiler Traits</a></li>
|
43080
|
-
<li><a href="#index-DCL_0028F_0029-
|
43081
|
-
<li><a href="#index-DCL_0028T_0029-
|
43082
|
-
<li><a href="#index-DCL_0028V_0029-
|
43083
|
-
<li><a href="#index-DEF_0028F_0029-
|
43084
|
-
<li><a href="#index-DEF_0028L_0029-
|
43085
|
-
<li><a href="#index-DEF_0028M_0029-
|
43086
|
-
<li><a href="#index-DEF_0028V_0029-
|
43087
|
-
<li><a href="#index-DEP_0028C_0029-
|
43088
|
-
<li><a href="#index-DEP_0028I_0029-
|
43089
|
-
<li><a href="#index-DEP_0028X_0029-
|
43042
|
+
<li><a href="#index-DCL_0028F_0029-797">DCL(F)</a>: <a href="#DCL_0028F_0029">DCL(F)</a></li>
|
43043
|
+
<li><a href="#index-DCL_0028T_0029-795">DCL(T)</a>: <a href="#DCL_0028T_0029">DCL(T)</a></li>
|
43044
|
+
<li><a href="#index-DCL_0028V_0029-796">DCL(V)</a>: <a href="#DCL_0028V_0029">DCL(V)</a></li>
|
43045
|
+
<li><a href="#index-DEF_0028F_0029-799">DEF(F)</a>: <a href="#DEF_0028F_0029">DEF(F)</a></li>
|
43046
|
+
<li><a href="#index-DEF_0028L_0029-801">DEF(L)</a>: <a href="#DEF_0028L_0029">DEF(L)</a></li>
|
43047
|
+
<li><a href="#index-DEF_0028M_0029-800">DEF(M)</a>: <a href="#DEF_0028M_0029">DEF(M)</a></li>
|
43048
|
+
<li><a href="#index-DEF_0028V_0029-798">DEF(V)</a>: <a href="#DEF_0028V_0029">DEF(V)</a></li>
|
43049
|
+
<li><a href="#index-DEP_0028C_0029-805">DEP(C)</a>: <a href="#DEP_0028C_0029">DEP(C)</a></li>
|
43050
|
+
<li><a href="#index-DEP_0028I_0029-804">DEP(I)</a>: <a href="#DEP_0028I_0029">DEP(I)</a></li>
|
43051
|
+
<li><a href="#index-DEP_0028X_0029-806">DEP(X)</a>: <a href="#DEP_0028X_0029">DEP(X)</a></li>
|
43090
43052
|
<li><a href="#index-E0004-47">E0004</a>: <a href="#E0004">E0004</a></li>
|
43091
43053
|
<li><a href="#index-E0007-48">E0007</a>: <a href="#E0007">E0007</a></li>
|
43092
43054
|
<li><a href="#index-E0008-49">E0008</a>: <a href="#E0008">E0008</a></li>
|
@@ -43096,29 +43058,29 @@ Up: <a rel="up" accesskey="u" href="#Top">Top</a>
|
|
43096
43058
|
<li><a href="#index-E0014-53">E0014</a>: <a href="#E0014">E0014</a></li>
|
43097
43059
|
<li><a href="#index-E0015-54">E0015</a>: <a href="#E0015">E0015</a></li>
|
43098
43060
|
<li><a href="#index-E0016-55">E0016</a>: <a href="#E0016">E0016</a></li>
|
43099
|
-
<li><a href="#index-FL_005fFUNC-
|
43100
|
-
<li><a href="#index-FL_005fSTMT-
|
43101
|
-
<li><a href="#index-FN_005fCSUB-
|
43102
|
-
<li><a href="#index-FN_005fCYCM-
|
43103
|
-
<li><a href="#index-FN_005fGOTO-
|
43104
|
-
<li><a href="#index-FN_005fLINE-
|
43105
|
-
<li><a href="#index-FN_005fNEST-
|
43106
|
-
<li><a href="#index-FN_005fPARA-
|
43107
|
-
<li><a href="#index-FN_005fPATH-
|
43108
|
-
<li><a href="#index-FN_005fRETN-
|
43109
|
-
<li><a href="#index-FN_005fSTMT-
|
43110
|
-
<li><a href="#index-FN_005fUELS-
|
43111
|
-
<li><a href="#index-FN_005fUNRC-
|
43112
|
-
<li><a href="#index-FN_005fUNUV-
|
43113
|
-
<li><a href="#index-INI-
|
43061
|
+
<li><a href="#index-FL_005fFUNC-781">FL_FUNC</a>: <a href="#FL_005fFUNC">FL_FUNC</a></li>
|
43062
|
+
<li><a href="#index-FL_005fSTMT-780">FL_STMT</a>: <a href="#FL_005fSTMT">FL_STMT</a></li>
|
43063
|
+
<li><a href="#index-FN_005fCSUB-787">FN_CSUB</a>: <a href="#FN_005fCSUB">FN_CSUB</a></li>
|
43064
|
+
<li><a href="#index-FN_005fCYCM-793">FN_CYCM</a>: <a href="#FN_005fCYCM">FN_CYCM</a></li>
|
43065
|
+
<li><a href="#index-FN_005fGOTO-788">FN_GOTO</a>: <a href="#FN_005fGOTO">FN_GOTO</a></li>
|
43066
|
+
<li><a href="#index-FN_005fLINE-784">FN_LINE</a>: <a href="#FN_005fLINE">FN_LINE</a></li>
|
43067
|
+
<li><a href="#index-FN_005fNEST-791">FN_NEST</a>: <a href="#FN_005fNEST">FN_NEST</a></li>
|
43068
|
+
<li><a href="#index-FN_005fPARA-785">FN_PARA</a>: <a href="#FN_005fPARA">FN_PARA</a></li>
|
43069
|
+
<li><a href="#index-FN_005fPATH-792">FN_PATH</a>: <a href="#FN_005fPATH">FN_PATH</a></li>
|
43070
|
+
<li><a href="#index-FN_005fRETN-789">FN_RETN</a>: <a href="#FN_005fRETN">FN_RETN</a></li>
|
43071
|
+
<li><a href="#index-FN_005fSTMT-782">FN_STMT</a>: <a href="#FN_005fSTMT">FN_STMT</a></li>
|
43072
|
+
<li><a href="#index-FN_005fUELS-790">FN_UELS</a>: <a href="#FN_005fUELS">FN_UELS</a></li>
|
43073
|
+
<li><a href="#index-FN_005fUNRC-783">FN_UNRC</a>: <a href="#FN_005fUNRC">FN_UNRC</a></li>
|
43074
|
+
<li><a href="#index-FN_005fUNUV-786">FN_UNUV</a>: <a href="#FN_005fUNUV">FN_UNUV</a></li>
|
43075
|
+
<li><a href="#index-INI-802">INI</a>: <a href="#INI">INI</a></li>
|
43114
43076
|
<li><a href="#index-linker_005ftraits-37">linker_traits</a>: <a href="#Linker-Traits">Linker Traits</a></li>
|
43115
43077
|
<li><a href="#index-linker_005ftraits_003aidentifier_005fignore_005fcase-39">linker_traits:identifier_ignore_case</a>: <a href="#Linker-Traits">Linker Traits</a></li>
|
43116
43078
|
<li><a href="#index-linker_005ftraits_003aidentifier_005fmax-38">linker_traits:identifier_max</a>: <a href="#Linker-Traits">Linker Traits</a></li>
|
43117
|
-
<li><a href="#index-LIT-
|
43079
|
+
<li><a href="#index-LIT-807">LIT</a>: <a href="#LIT">LIT</a></li>
|
43118
43080
|
<li><a href="#index-message_005ftraits-40">message_traits</a>: <a href="#Message-Traits">Message Traits</a></li>
|
43119
43081
|
<li><a href="#index-message_005ftraits_003achange_005flist-42">message_traits:change_list</a>: <a href="#Message-Traits">Message Traits</a></li>
|
43120
43082
|
<li><a href="#index-message_005ftraits_003alanguage-41">message_traits:language</a>: <a href="#Message-Traits">Message Traits</a></li>
|
43121
|
-
<li><a href="#index-PRE-
|
43083
|
+
<li><a href="#index-PRE-808">PRE</a>: <a href="#PRE">PRE</a></li>
|
43122
43084
|
<li><a href="#index-project_005ftraits-1">project_traits</a>: <a href="#Project-Traits">Project Traits</a></li>
|
43123
43085
|
<li><a href="#index-project_005ftraits_003acoding_005fstyle_003aindent_005fstyle-5">project_traits:coding_style:indent_style</a>: <a href="#Project-Traits">Project Traits</a></li>
|
43124
43086
|
<li><a href="#index-project_005ftraits_003acoding_005fstyle_003aindent_005fwidth-7">project_traits:coding_style:indent_width</a>: <a href="#Project-Traits">Project Traits</a></li>
|
@@ -43127,7 +43089,7 @@ Up: <a rel="up" accesskey="u" href="#Top">Top</a>
|
|
43127
43089
|
<li><a href="#index-project_005ftraits_003ainclude_005fpath-3">project_traits:include_path</a>: <a href="#Project-Traits">Project Traits</a></li>
|
43128
43090
|
<li><a href="#index-project_005ftraits_003ainitial_005fheader-4">project_traits:initial_header</a>: <a href="#Project-Traits">Project Traits</a></li>
|
43129
43091
|
<li><a href="#index-project_005ftraits_003aproject_005fname-2">project_traits:project_name</a>: <a href="#Project-Traits">Project Traits</a></li>
|
43130
|
-
<li><a href="#index-VER-
|
43092
|
+
<li><a href="#index-VER-794">VER</a>: <a href="#VER">VER</a></li>
|
43131
43093
|
<li><a href="#index-W0001-56">W0001</a>: <a href="#W0001">W0001</a></li>
|
43132
43094
|
<li><a href="#index-W0002-57">W0002</a>: <a href="#W0002">W0002</a></li>
|
43133
43095
|
<li><a href="#index-W0003-58">W0003</a>: <a href="#W0003">W0003</a></li>
|
@@ -43816,42 +43778,41 @@ Up: <a rel="up" accesskey="u" href="#Top">Top</a>
|
|
43816
43778
|
<li><a href="#index-W1041-741">W1041</a>: <a href="#W1041">W1041</a></li>
|
43817
43779
|
<li><a href="#index-W1042-742">W1042</a>: <a href="#W1042">W1042</a></li>
|
43818
43780
|
<li><a href="#index-W1043-743">W1043</a>: <a href="#W1043">W1043</a></li>
|
43819
|
-
<li><a href="#index-
|
43820
|
-
<li><a href="#index-
|
43821
|
-
<li><a href="#index-
|
43822
|
-
<li><a href="#index-
|
43823
|
-
<li><a href="#index-
|
43824
|
-
<li><a href="#index-
|
43825
|
-
<li><a href="#index-
|
43826
|
-
<li><a href="#index-
|
43827
|
-
<li><a href="#index-
|
43828
|
-
<li><a href="#index-
|
43829
|
-
<li><a href="#index-
|
43830
|
-
<li><a href="#index-
|
43831
|
-
<li><a href="#index-
|
43832
|
-
<li><a href="#index-
|
43833
|
-
<li><a href="#index-
|
43834
|
-
<li><a href="#index-
|
43835
|
-
<li><a href="#index-
|
43836
|
-
<li><a href="#index-
|
43837
|
-
<li><a href="#index-
|
43838
|
-
<li><a href="#index-
|
43839
|
-
<li><a href="#index-
|
43840
|
-
<li><a href="#index-
|
43841
|
-
<li><a href="#index-
|
43842
|
-
<li><a href="#index-
|
43843
|
-
<li><a href="#index-
|
43844
|
-
<li><a href="#index-
|
43845
|
-
<li><a href="#index-
|
43846
|
-
<li><a href="#index-
|
43847
|
-
<li><a href="#index-
|
43848
|
-
<li><a href="#index-
|
43849
|
-
<li><a href="#index-
|
43850
|
-
<li><a href="#index-
|
43851
|
-
<li><a href="#index-
|
43852
|
-
<li><a href="#index-
|
43853
|
-
<li><a href="#index-
|
43854
|
-
<li><a href="#index-W9003-779">W9003</a>: <a href="#W9003">W9003</a></li>
|
43781
|
+
<li><a href="#index-W1045-744">W1045</a>: <a href="#W1045">W1045</a></li>
|
43782
|
+
<li><a href="#index-W1046-745">W1046</a>: <a href="#W1046">W1046</a></li>
|
43783
|
+
<li><a href="#index-W1047-746">W1047</a>: <a href="#W1047">W1047</a></li>
|
43784
|
+
<li><a href="#index-W1048-747">W1048</a>: <a href="#W1048">W1048</a></li>
|
43785
|
+
<li><a href="#index-W1049-748">W1049</a>: <a href="#W1049">W1049</a></li>
|
43786
|
+
<li><a href="#index-W1050-749">W1050</a>: <a href="#W1050">W1050</a></li>
|
43787
|
+
<li><a href="#index-W1051-750">W1051</a>: <a href="#W1051">W1051</a></li>
|
43788
|
+
<li><a href="#index-W1052-751">W1052</a>: <a href="#W1052">W1052</a></li>
|
43789
|
+
<li><a href="#index-W1053-752">W1053</a>: <a href="#W1053">W1053</a></li>
|
43790
|
+
<li><a href="#index-W1054-753">W1054</a>: <a href="#W1054">W1054</a></li>
|
43791
|
+
<li><a href="#index-W1055-754">W1055</a>: <a href="#W1055">W1055</a></li>
|
43792
|
+
<li><a href="#index-W1056-755">W1056</a>: <a href="#W1056">W1056</a></li>
|
43793
|
+
<li><a href="#index-W1057-756">W1057</a>: <a href="#W1057">W1057</a></li>
|
43794
|
+
<li><a href="#index-W1058-757">W1058</a>: <a href="#W1058">W1058</a></li>
|
43795
|
+
<li><a href="#index-W1059-758">W1059</a>: <a href="#W1059">W1059</a></li>
|
43796
|
+
<li><a href="#index-W1060-759">W1060</a>: <a href="#W1060">W1060</a></li>
|
43797
|
+
<li><a href="#index-W1061-760">W1061</a>: <a href="#W1061">W1061</a></li>
|
43798
|
+
<li><a href="#index-W1062-761">W1062</a>: <a href="#W1062">W1062</a></li>
|
43799
|
+
<li><a href="#index-W1063-762">W1063</a>: <a href="#W1063">W1063</a></li>
|
43800
|
+
<li><a href="#index-W1064-763">W1064</a>: <a href="#W1064">W1064</a></li>
|
43801
|
+
<li><a href="#index-W1065-764">W1065</a>: <a href="#W1065">W1065</a></li>
|
43802
|
+
<li><a href="#index-W1066-765">W1066</a>: <a href="#W1066">W1066</a></li>
|
43803
|
+
<li><a href="#index-W1067-766">W1067</a>: <a href="#W1067">W1067</a></li>
|
43804
|
+
<li><a href="#index-W1068-767">W1068</a>: <a href="#W1068">W1068</a></li>
|
43805
|
+
<li><a href="#index-W1069-768">W1069</a>: <a href="#W1069">W1069</a></li>
|
43806
|
+
<li><a href="#index-W1070-769">W1070</a>: <a href="#W1070">W1070</a></li>
|
43807
|
+
<li><a href="#index-W1071-770">W1071</a>: <a href="#W1071">W1071</a></li>
|
43808
|
+
<li><a href="#index-W1072-771">W1072</a>: <a href="#W1072">W1072</a></li>
|
43809
|
+
<li><a href="#index-W1073-772">W1073</a>: <a href="#W1073">W1073</a></li>
|
43810
|
+
<li><a href="#index-W1074-773">W1074</a>: <a href="#W1074">W1074</a></li>
|
43811
|
+
<li><a href="#index-W1075-774">W1075</a>: <a href="#W1075">W1075</a></li>
|
43812
|
+
<li><a href="#index-W1076-775">W1076</a>: <a href="#W1076">W1076</a></li>
|
43813
|
+
<li><a href="#index-W1077-776">W1077</a>: <a href="#W1077">W1077</a></li>
|
43814
|
+
<li><a href="#index-W9002-777">W9002</a>: <a href="#W9002">W9002</a></li>
|
43815
|
+
<li><a href="#index-W9003-778">W9003</a>: <a href="#W9003">W9003</a></li>
|
43855
43816
|
<li><a href="#index-X0001-43">X0001</a>: <a href="#X0001">X0001</a></li>
|
43856
43817
|
<li><a href="#index-X0002-44">X0002</a>: <a href="#X0002">X0002</a></li>
|
43857
43818
|
<li><a href="#index-X0003-45">X0003</a>: <a href="#X0003">X0003</a></li>
|