adlint 2.6.10 → 2.6.12

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 CHANGED
@@ -1,3 +1,19 @@
1
+ Thu Nov 29 15:49:50 2012 Yutaka Yanoh <yanoh@users.sourceforge.net>
2
+
3
+ * release.ga : 2.6.12
4
+ - Fix abend problem of huge integer-constant evaluation.
5
+ - Correct to run on Ruby 2.0.0dev (r37962) without warnings.
6
+
7
+ Thu Nov 29 14:21:04 2012 Yutaka Yanoh <yanoh@users.sourceforge.net>
8
+
9
+ * lib/adlint/c/domain.rb : Correct to run on Ruby 2.0.0dev (r37962)
10
+ without warnings.
11
+
12
+ Fri Nov 9 13:54:59 2012 Yutaka Yanoh <yanoh@users.sourceforge.net>
13
+
14
+ * lib/adlint/c/type.rb : Fix abend problem of huge integer-constant
15
+ evaluation.
16
+
1
17
  Thu Nov 8 13:01:03 2012 Yutaka Yanoh <yanoh@users.sourceforge.net>
2
18
 
3
19
  * release.ga : 2.6.10
data/NEWS CHANGED
@@ -21,6 +21,17 @@
21
21
 
22
22
  ++
23
23
 
24
+ === \AdLint 2.6.12 is released (2012-11-29)
25
+
26
+ ==== Changes since the 2.6.10 release
27
+
28
+ * Fix abend problem of huge integer-constant evaluation
29
+ * Correct to run on Ruby 2.0.0dev (r37962) without warnings
30
+
31
+ See the file
32
+ {ChangeLog}[http://adlint.sourceforge.net/pmwiki/upload.d/Main/ChangeLog]
33
+ for more details.
34
+
24
35
  === \AdLint 2.6.10 is released (2012-11-08)
25
36
 
26
37
  ==== Changes since the 2.6.2 release
@@ -37,10 +48,6 @@
37
48
  * Fix W0460 detection to output outermost variable name when the referencing
38
49
  variable is an array element or a member of struct or union
39
50
 
40
- See the file
41
- {ChangeLog}[http://adlint.sourceforge.net/pmwiki/upload.d/Main/ChangeLog]
42
- for more details.
43
-
44
51
  === \AdLint 2.6.2 is released (2012-10-31)
45
52
 
46
53
  ==== Changes since the 2.6.0 release
@@ -49,7 +49,7 @@
49
49
  # - "ERR:X99"
50
50
  # format: "Your custom message for the error of E9999."
51
51
 
52
- version: "2.6.10"
52
+ version: "2.6.12"
53
53
 
54
54
  message_definition:
55
55
  W0001:
@@ -49,7 +49,7 @@
49
49
  # - "ERR:X99"
50
50
  # format: "Your custom message for the error of E9999."
51
51
 
52
- version: "2.6.10"
52
+ version: "2.6.12"
53
53
 
54
54
  message_definition:
55
55
  W0001:
@@ -49,7 +49,7 @@
49
49
  # - "ERR:X99"
50
50
  # format: "Your custom message for the error of E9999."
51
51
 
52
- version: "2.6.10"
52
+ version: "2.6.12"
53
53
 
54
54
  message_definition:
55
55
  X0001:
@@ -49,7 +49,7 @@
49
49
  # - "ERR:X99"
50
50
  # format: "Your custom message for the error of E9999."
51
51
 
52
- version: "2.6.10"
52
+ version: "2.6.12"
53
53
 
54
54
  message_definition:
55
55
  X0001:
@@ -9,7 +9,6 @@ Feature: W0606
9
9
  float a;
10
10
  int b;
11
11
  };
12
-
13
12
  """
14
13
  When I successfully run `adlint fixture.c` on noarch
15
14
  Then the output should exactly match with:
@@ -1807,8 +1807,11 @@ module C #:nodoc:
1807
1807
  end
1808
1808
 
1809
1809
  def each_sample
1810
- return ::Enumerator.new(self, :each_sample) unless block_given?
1811
- self
1810
+ if block_given?
1811
+ self
1812
+ else
1813
+ to_enum(:each_sample)
1814
+ end
1812
1815
  end
1813
1816
 
1814
1817
  def to_defined_domain
@@ -2694,9 +2697,12 @@ module C #:nodoc:
2694
2697
  end
2695
2698
 
2696
2699
  def each_sample
2697
- return ::Enumerator.new(self, :each_sample) unless block_given?
2698
- yield(0)
2699
- self
2700
+ if block_given?
2701
+ yield(0)
2702
+ self
2703
+ else
2704
+ to_enum(:each_sample)
2705
+ end
2700
2706
  end
2701
2707
 
2702
2708
  def to_defined_domain
@@ -3574,9 +3580,12 @@ module C #:nodoc:
3574
3580
  end
3575
3581
 
3576
3582
  def each_sample
3577
- return ::Enumerator.new(self, :each_sample) unless block_given?
3578
- yield(@value)
3579
- self
3583
+ if block_given?
3584
+ yield(@value)
3585
+ self
3586
+ else
3587
+ to_enum(:each_sample)
3588
+ end
3580
3589
  end
3581
3590
 
3582
3591
  def to_defined_domain
@@ -4470,9 +4479,12 @@ module C #:nodoc:
4470
4479
  end
4471
4480
 
4472
4481
  def each_sample
4473
- return ::Enumerator.new(self, :each_sample) unless block_given?
4474
- yield(max_value)
4475
- self
4482
+ if block_given?
4483
+ yield(max_value)
4484
+ self
4485
+ else
4486
+ to_enum(:each_sample)
4487
+ end
4476
4488
  end
4477
4489
 
4478
4490
  def to_defined_domain
@@ -5358,9 +5370,12 @@ module C #:nodoc:
5358
5370
  end
5359
5371
 
5360
5372
  def each_sample
5361
- return ::Enumerator.new(self, :each_sample) unless block_given?
5362
- yield(min_value)
5363
- self
5373
+ if block_given?
5374
+ yield(min_value)
5375
+ self
5376
+ else
5377
+ to_enum(:each_sample)
5378
+ end
5364
5379
  end
5365
5380
 
5366
5381
  def to_defined_domain
@@ -6279,14 +6294,14 @@ module C #:nodoc:
6279
6294
  memoize :max_value
6280
6295
 
6281
6296
  def each_sample
6282
- return ::Enumerator.new(self, :each_sample) unless block_given?
6283
-
6284
- samples = domain_pair.map { |domain|
6285
- domain.each_sample.to_a
6286
- }.flatten.uniq
6287
-
6288
- samples.each do |sample|
6289
- yield(sample) if contain?(sample)
6297
+ if block_given?
6298
+ domain_pair.map { |domain|
6299
+ domain.each_sample.to_a
6300
+ }.flatten.uniq.each do |sample|
6301
+ yield(sample) if contain?(sample)
6302
+ end
6303
+ else
6304
+ to_enum(:each_sample)
6290
6305
  end
6291
6306
  end
6292
6307
 
@@ -6635,14 +6650,14 @@ module C #:nodoc:
6635
6650
  memoize :max_value
6636
6651
 
6637
6652
  def each_sample
6638
- return ::Enumerator.new(self, :each_sample) unless block_given?
6639
-
6640
- samples = domain_pair.map { |domain|
6641
- domain.each_sample.to_a
6642
- }.flatten.uniq
6643
-
6644
- samples.each do |sample|
6645
- yield(sample)
6653
+ if block_given?
6654
+ domain_pair.map { |domain|
6655
+ domain.each_sample.to_a
6656
+ }.flatten.uniq.each do |sample|
6657
+ yield(sample)
6658
+ end
6659
+ else
6660
+ to_enum(:each_sample)
6646
6661
  end
6647
6662
  end
6648
6663
 
@@ -7890,9 +7905,12 @@ module C #:nodoc:
7890
7905
  end
7891
7906
 
7892
7907
  def each_sample
7893
- return ::Enumerator.new(self, :each_sample) unless block_given?
7894
- yield(0)
7895
- self
7908
+ if block_given?
7909
+ yield(0)
7910
+ self
7911
+ else
7912
+ to_enum(:each_sample)
7913
+ end
7896
7914
  end
7897
7915
 
7898
7916
  def to_defined_domain
data/lib/adlint/c/type.rb CHANGED
@@ -72,6 +72,7 @@ module C #:nodoc:
72
72
  def_delegator :standard_type_catalog, :long_long_int_type
73
73
  def_delegator :standard_type_catalog, :signed_long_long_int_type
74
74
  def_delegator :standard_type_catalog, :unsigned_long_long_int_type
75
+ def_delegator :standard_type_catalog, :extended_big_int_type
75
76
  def_delegator :standard_type_catalog, :float_type
76
77
  def_delegator :standard_type_catalog, :double_type
77
78
  def_delegator :standard_type_catalog, :long_double_type
@@ -3414,8 +3415,7 @@ module C #:nodoc:
3414
3415
 
3415
3416
  def compatible?(to_type)
3416
3417
  to_type.integer? &&
3417
- to_type.min_value <= self.min_value &&
3418
- self.max_value <= to_type.max_value
3418
+ to_type.min_value <= min_value && max_value <= to_type.max_value
3419
3419
  end
3420
3420
 
3421
3421
  def integer?
@@ -7146,6 +7146,8 @@ module C #:nodoc:
7146
7146
  @unsigned_long_long_int_type =
7147
7147
  install(UnsignedLongLongIntType.new(type_table))
7148
7148
 
7149
+ @extended_big_int_type = install(ExtendedBigIntType.new(type_table))
7150
+
7149
7151
  @float_type = install(FloatType.new(type_table))
7150
7152
  @double_type = install(DoubleType.new(type_table))
7151
7153
  @long_double_type = install(LongDoubleType.new(type_table))
@@ -7179,6 +7181,7 @@ module C #:nodoc:
7179
7181
  attr_reader :long_long_int_type
7180
7182
  attr_reader :signed_long_long_int_type
7181
7183
  attr_reader :unsigned_long_long_int_type
7184
+ attr_reader :extended_big_int_type
7182
7185
  attr_reader :float_type
7183
7186
  attr_reader :double_type
7184
7187
  attr_reader :long_double_type
data/lib/adlint/util.rb CHANGED
@@ -131,7 +131,9 @@ module AdLint #:nodoc:
131
131
  self
132
132
  end
133
133
 
134
- attr_reader :validators
134
+ def validators
135
+ @validators ||= []
136
+ end
135
137
 
136
138
  def name
137
139
  subclass_responsibility
@@ -33,8 +33,8 @@ module AdLint #:nodoc:
33
33
 
34
34
  MAJOR_VERSION = 2
35
35
  MINOR_VERSION = 6
36
- PATCH_VERSION = 10
37
- RELEASE_DATE = "2012-11-08"
36
+ PATCH_VERSION = 12
37
+ RELEASE_DATE = "2012-11-29"
38
38
 
39
39
  TRAITS_SCHEMA_VERSION = "2.4.0"
40
40
 
@@ -1,8 +1,8 @@
1
1
  <html lang="ja">
2
2
  <head>
3
- <title>AdLint 2.6.10 開発者ガイド</title>
3
+ <title>AdLint 2.6.12 開発者ガイド</title>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
- <meta name="description" content="AdLint 2.6.10 開発者ガイド">
5
+ <meta name="description" content="AdLint 2.6.12 開発者ガイド">
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 2.6.10 開発者ガイド</h1>
47
+ <h1 class="settitle">AdLint 2.6.12 開発者ガイド</h1>
48
48
  <div class="contents">
49
49
  <h2>Table of Contents</h2>
50
50
  <ul>
@@ -2,7 +2,7 @@
2
2
  @setfilename developers_guide_ja.info
3
3
  @documentlanguage ja
4
4
  @documentencoding utf-8
5
- @settitle AdLint 2.6.10 開発者ガイド
5
+ @settitle AdLint 2.6.12 開発者ガイド
6
6
 
7
7
  @copying
8
8
  Copyright (C) 2010-2012, OGIS-RI Co.,Ltd.
@@ -1,8 +1,8 @@
1
1
  <html lang="en">
2
2
  <head>
3
- <title>AdLint 2.6.10 User's Guide</title>
3
+ <title>AdLint 2.6.12 User's Guide</title>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
- <meta name="description" content="AdLint 2.6.10 User's Guide">
5
+ <meta name="description" content="AdLint 2.6.12 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 2.6.10 User's Guide</h1>
47
+ <h1 class="settitle">AdLint 2.6.12 User's Guide</h1>
48
48
  <div class="node">
49
49
  <a name="Top"></a>
50
50
  <p><hr>
@@ -1468,7 +1468,7 @@ examination package, message category and message severity to the <a href="#Mess
1468
1468
  </td><td valign="top" width="10%">
1469
1469
  array of string
1470
1470
  </td><td valign="top" width="0%">
1471
- <b>This item has no effect on AdLint 2.6.10, yet.</b>
1471
+ <b>This item has no effect on AdLint 2.6.12, yet.</b>
1472
1472
 
1473
1473
  <p>If a directory path is specified, AdLint will output warning messages about
1474
1474
  source files located under the specified directory.
@@ -1480,7 +1480,7 @@ the target source files such as system headers or 3rd-party library headers.
1480
1480
  </td><td valign="top" width="10%">
1481
1481
  array of string
1482
1482
  </td><td valign="top" width="0%">
1483
- <b>This item has no effect on AdLint 2.6.10, yet.</b>
1483
+ <b>This item has no effect on AdLint 2.6.12, yet.</b>
1484
1484
 
1485
1485
  <p>If a directory path is specified, AdLint will suppress warning messages about
1486
1486
  source files located under the specified directory.
@@ -1490,7 +1490,7 @@ source files located under the specified directory.
1490
1490
  </td><td valign="top" width="10%">
1491
1491
  boolean
1492
1492
  </td><td valign="top" width="0%">
1493
- <b>This item has no effect on AdLint 2.6.10, yet.</b>
1493
+ <b>This item has no effect on AdLint 2.6.12, yet.</b>
1494
1494
 
1495
1495
  <p>This item enables code check selection by annotations in the target source
1496
1496
  files.
@@ -1502,7 +1502,7 @@ files.
1502
1502
  </td><td valign="top" width="10%">
1503
1503
  array of string
1504
1504
  </td><td valign="top" width="0%">
1505
- <b>This item has no effect on AdLint 2.6.10, yet.</b>
1505
+ <b>This item has no effect on AdLint 2.6.12, yet.</b>
1506
1506
 
1507
1507
  <p>This item represents excluding code checks by its message categories.
1508
1508
  <br></td></tr><tr align="left"><td valign="top" width="1%">7
@@ -1511,7 +1511,7 @@ array of string
1511
1511
  </td><td valign="top" width="10%">
1512
1512
  regexp string
1513
1513
  </td><td valign="top" width="0%">
1514
- <b>This item has no effect on AdLint 2.6.10, yet.</b>
1514
+ <b>This item has no effect on AdLint 2.6.12, yet.</b>
1515
1515
 
1516
1516
  <p>This item represents excluding code checks by its message severities.
1517
1517
  <br></td></tr><tr align="left"><td valign="top" width="1%">8
@@ -1520,7 +1520,7 @@ regexp string
1520
1520
  </td><td valign="top" width="10%">
1521
1521
  map of Message ID and string
1522
1522
  </td><td valign="top" width="0%">
1523
- <b>This item has no effect on AdLint 2.6.10, yet.</b>
1523
+ <b>This item has no effect on AdLint 2.6.12, yet.</b>
1524
1524
 
1525
1525
  <p>This item represents excluding code checks by its message ID.
1526
1526
 
@@ -1532,7 +1532,7 @@ also specify the name of the examination package including the message.
1532
1532
  </td><td valign="top" width="10%">
1533
1533
  map of Message ID and string
1534
1534
  </td><td valign="top" width="0%">
1535
- <b>This item has no effect on AdLint 2.6.10, yet.</b>
1535
+ <b>This item has no effect on AdLint 2.6.12, yet.</b>
1536
1536
 
1537
1537
  <p>This item represents messages which is excluded by settings of <code>exclusion</code>
1538
1538
  section but will be used by AdLint.
@@ -2,7 +2,7 @@
2
2
  @setfilename users_guide_en.info
3
3
  @documentlanguage en
4
4
  @documentencoding utf-8
5
- @settitle AdLint 2.6.10 User's Guide
5
+ @settitle AdLint 2.6.12 User's Guide
6
6
 
7
7
  @copying
8
8
  Copyright (C) 2010-2012, OGIS-RI Co.,Ltd.
@@ -1407,7 +1407,7 @@ File, message file}.
1407
1407
  @tab
1408
1408
  array of string
1409
1409
  @tab
1410
- @b{This item has no effect on AdLint 2.6.10, yet.}
1410
+ @b{This item has no effect on AdLint 2.6.12, yet.}
1411
1411
 
1412
1412
  If a directory path is specified, AdLint will output warning messages about
1413
1413
  source files located under the specified directory.
@@ -1421,7 +1421,7 @@ the target source files such as system headers or 3rd-party library headers.
1421
1421
  @tab
1422
1422
  array of string
1423
1423
  @tab
1424
- @b{This item has no effect on AdLint 2.6.10, yet.}
1424
+ @b{This item has no effect on AdLint 2.6.12, yet.}
1425
1425
 
1426
1426
  If a directory path is specified, AdLint will suppress warning messages about
1427
1427
  source files located under the specified directory.
@@ -1433,7 +1433,7 @@ source files located under the specified directory.
1433
1433
  @tab
1434
1434
  boolean
1435
1435
  @tab
1436
- @b{This item has no effect on AdLint 2.6.10, yet.}
1436
+ @b{This item has no effect on AdLint 2.6.12, yet.}
1437
1437
 
1438
1438
  This item enables code check selection by annotations in the target source
1439
1439
  files.
@@ -1447,7 +1447,7 @@ In case of @code{true}, code check selection by annotations will be enabled.
1447
1447
  @tab
1448
1448
  array of string
1449
1449
  @tab
1450
- @b{This item has no effect on AdLint 2.6.10, yet.}
1450
+ @b{This item has no effect on AdLint 2.6.12, yet.}
1451
1451
 
1452
1452
  This item represents excluding code checks by its message categories.
1453
1453
  @item 7
@@ -1458,7 +1458,7 @@ This item represents excluding code checks by its message categories.
1458
1458
  @tab
1459
1459
  regexp string
1460
1460
  @tab
1461
- @b{This item has no effect on AdLint 2.6.10, yet.}
1461
+ @b{This item has no effect on AdLint 2.6.12, yet.}
1462
1462
 
1463
1463
  This item represents excluding code checks by its message severities.
1464
1464
  @item 8
@@ -1469,7 +1469,7 @@ This item represents excluding code checks by its message severities.
1469
1469
  @tab
1470
1470
  map of Message ID and string
1471
1471
  @tab
1472
- @b{This item has no effect on AdLint 2.6.10, yet.}
1472
+ @b{This item has no effect on AdLint 2.6.12, yet.}
1473
1473
 
1474
1474
  This item represents excluding code checks by its message ID.
1475
1475
 
@@ -1483,7 +1483,7 @@ also specify the name of the examination package including the message.
1483
1483
  @tab
1484
1484
  map of Message ID and string
1485
1485
  @tab
1486
- @b{This item has no effect on AdLint 2.6.10, yet.}
1486
+ @b{This item has no effect on AdLint 2.6.12, yet.}
1487
1487
 
1488
1488
  This item represents messages which is excluded by settings of @code{exclusion}
1489
1489
  section but will be used by AdLint.
@@ -1,8 +1,8 @@
1
1
  <html lang="ja">
2
2
  <head>
3
- <title>AdLint 2.6.10 利用者ガイド</title>
3
+ <title>AdLint 2.6.12 利用者ガイド</title>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
- <meta name="description" content="AdLint 2.6.10 利用者ガイド">
5
+ <meta name="description" content="AdLint 2.6.12 利用者ガイド">
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 2.6.10 利用者ガイド</h1>
47
+ <h1 class="settitle">AdLint 2.6.12 利用者ガイド</h1>
48
48
  <div class="node">
49
49
  <a name="Top"></a>
50
50
  <p><hr>
@@ -1533,7 +1533,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Traits">Traits</a>
1533
1533
  </td><td valign="top" width="10%">
1534
1534
  文字列の配列
1535
1535
  </td><td valign="top" width="0%">
1536
- <b>AdLint 2.6.10 では、この項目による設定は未サポートです。</b>
1536
+ <b>AdLint 2.6.12 では、この項目による設定は未サポートです。</b>
1537
1537
 
1538
1538
  <p>ディレクトリパス名を指定した場合は、そのディレクトリ配下のソースコードについて
1539
1539
  のみ、警告メッセージを出力します。
@@ -1546,7 +1546,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Traits">Traits</a>
1546
1546
  </td><td valign="top" width="10%">
1547
1547
  文字列の配列
1548
1548
  </td><td valign="top" width="0%">
1549
- <b>AdLint 2.6.10 では、この項目による設定は未サポートです。</b>
1549
+ <b>AdLint 2.6.12 では、この項目による設定は未サポートです。</b>
1550
1550
 
1551
1551
  <p>ディレクトリパス名を指定した場合は、そのディレクトリ配下のソースコードについて
1552
1552
  は、警告メッセージを抑止します。
@@ -1556,7 +1556,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Traits">Traits</a>
1556
1556
  </td><td valign="top" width="10%">
1557
1557
  真偽値
1558
1558
  </td><td valign="top" width="0%">
1559
- <b>AdLint 2.6.10 では、この項目による設定は未サポートです。</b>
1559
+ <b>AdLint 2.6.12 では、この項目による設定は未サポートです。</b>
1560
1560
 
1561
1561
  <p>解析対象ソースコード内の注釈によるコードチェックの選択機能を有効化します。
1562
1562
 
@@ -1567,7 +1567,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Traits">Traits</a>
1567
1567
  </td><td valign="top" width="10%">
1568
1568
  文字列の配列
1569
1569
  </td><td valign="top" width="0%">
1570
- <b>AdLint 2.6.10 では、この項目による設定は未サポートです。</b>
1570
+ <b>AdLint 2.6.12 では、この項目による設定は未サポートです。</b>
1571
1571
 
1572
1572
  <p><a href="#global_005ftraits_003aexam_005fpackages">exam_packages</a> で指定したソースコード検査パッ
1573
1573
  ケージ中のコードチェック機能で、実行を除外するものをメッセージのカテゴリにより
@@ -1578,7 +1578,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Traits">Traits</a>
1578
1578
  </td><td valign="top" width="10%">
1579
1579
  正規表現を表す文字列
1580
1580
  </td><td valign="top" width="0%">
1581
- <b>AdLint 2.6.10 では、この項目による設定は未サポートです。</b>
1581
+ <b>AdLint 2.6.12 では、この項目による設定は未サポートです。</b>
1582
1582
 
1583
1583
  <p><a href="#global_005ftraits_003aexam_005fpackages">exam_packages</a> で指定したソースコード検査パッ
1584
1584
  ケージ中のコードチェック機能で、実行を除外するものをメッセージの深刻度により指
@@ -1589,7 +1589,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Traits">Traits</a>
1589
1589
  </td><td valign="top" width="10%">
1590
1590
  メッセージ ID と文字列のマップ
1591
1591
  </td><td valign="top" width="0%">
1592
- <b>AdLint 2.6.10 では、この項目による設定は未サポートです。</b>
1592
+ <b>AdLint 2.6.12 では、この項目による設定は未サポートです。</b>
1593
1593
 
1594
1594
  <p><a href="#global_005ftraits_003aexam_005fpackages">exam_packages</a> で指定したソースコード検査パッ
1595
1595
  ケージ中のコードチェック機能で、実行を除外するものをメッセージ ID により指定し
@@ -1604,7 +1604,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Traits">Traits</a>
1604
1604
  </td><td valign="top" width="10%">
1605
1605
  メッセージ ID と文字列のマップ
1606
1606
  </td><td valign="top" width="0%">
1607
- <b>AdLint 2.6.10 では、この項目による設定は未サポートです。</b>
1607
+ <b>AdLint 2.6.12 では、この項目による設定は未サポートです。</b>
1608
1608
 
1609
1609
  <p><code>exclusion</code> セクションの設定内容により除外しましたが、メッセージ ID 指定で
1610
1610
  特定のコードチェック機能を含める場合に指定します。
@@ -2,7 +2,7 @@
2
2
  @setfilename users_guide_ja.info
3
3
  @documentlanguage ja
4
4
  @documentencoding utf-8
5
- @settitle AdLint 2.6.10 利用者ガイド
5
+ @settitle AdLint 2.6.12 利用者ガイド
6
6
 
7
7
  @copying
8
8
  Copyright (C) 2010-2012, OGIS-RI Co.,Ltd.
@@ -1464,7 +1464,7 @@ extension_substitution:
1464
1464
  @tab
1465
1465
  文字列の配列
1466
1466
  @tab
1467
- @b{AdLint 2.6.10 では、この項目による設定は未サポートです。}
1467
+ @b{AdLint 2.6.12 では、この項目による設定は未サポートです。}
1468
1468
 
1469
1469
  ディレクトリパス名を指定した場合は、そのディレクトリ配下のソースコードについて
1470
1470
  のみ、警告メッセージを出力します。
@@ -1479,7 +1479,7 @@ extension_substitution:
1479
1479
  @tab
1480
1480
  文字列の配列
1481
1481
  @tab
1482
- @b{AdLint 2.6.10 では、この項目による設定は未サポートです。}
1482
+ @b{AdLint 2.6.12 では、この項目による設定は未サポートです。}
1483
1483
 
1484
1484
  ディレクトリパス名を指定した場合は、そのディレクトリ配下のソースコードについて
1485
1485
  は、警告メッセージを抑止します。
@@ -1491,7 +1491,7 @@ extension_substitution:
1491
1491
  @tab
1492
1492
  真偽値
1493
1493
  @tab
1494
- @b{AdLint 2.6.10 では、この項目による設定は未サポートです。}
1494
+ @b{AdLint 2.6.12 では、この項目による設定は未サポートです。}
1495
1495
 
1496
1496
  解析対象ソースコード内の注釈によるコードチェックの選択機能を有効化します。
1497
1497
 
@@ -1504,7 +1504,7 @@ extension_substitution:
1504
1504
  @tab
1505
1505
  文字列の配列
1506
1506
  @tab
1507
- @b{AdLint 2.6.10 では、この項目による設定は未サポートです。}
1507
+ @b{AdLint 2.6.12 では、この項目による設定は未サポートです。}
1508
1508
 
1509
1509
  @ref{global_traits:exam_packages, exam_packages} で指定したソースコード検査パッ
1510
1510
  ケージ中のコードチェック機能で、実行を除外するものをメッセージのカテゴリにより
@@ -1517,7 +1517,7 @@ extension_substitution:
1517
1517
  @tab
1518
1518
  正規表現を表す文字列
1519
1519
  @tab
1520
- @b{AdLint 2.6.10 では、この項目による設定は未サポートです。}
1520
+ @b{AdLint 2.6.12 では、この項目による設定は未サポートです。}
1521
1521
 
1522
1522
  @ref{global_traits:exam_packages, exam_packages} で指定したソースコード検査パッ
1523
1523
  ケージ中のコードチェック機能で、実行を除外するものをメッセージの深刻度により指
@@ -1530,7 +1530,7 @@ extension_substitution:
1530
1530
  @tab
1531
1531
  メッセージ ID と文字列のマップ
1532
1532
  @tab
1533
- @b{AdLint 2.6.10 では、この項目による設定は未サポートです。}
1533
+ @b{AdLint 2.6.12 では、この項目による設定は未サポートです。}
1534
1534
 
1535
1535
  @ref{global_traits:exam_packages, exam_packages} で指定したソースコード検査パッ
1536
1536
  ケージ中のコードチェック機能で、実行を除外するものをメッセージ ID により指定し
@@ -1547,7 +1547,7 @@ extension_substitution:
1547
1547
  @tab
1548
1548
  メッセージ ID と文字列のマップ
1549
1549
  @tab
1550
- @b{AdLint 2.6.10 では、この項目による設定は未サポートです。}
1550
+ @b{AdLint 2.6.12 では、この項目による設定は未サポートです。}
1551
1551
 
1552
1552
  @code{exclusion} セクションの設定内容により除外しましたが、メッセージ ID 指定で
1553
1553
  特定のコードチェック機能を含める場合に指定します。
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: adlint
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.10
4
+ version: 2.6.12
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-11-08 00:00:00.000000000 Z
12
+ date: 2012-11-29 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: ! 'AdLint is a source code static analyzer.
15
15