adlint 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (465) hide show
  1. data/AUTHORS +27 -0
  2. data/COPYING +674 -0
  3. data/ChangeLog +820 -0
  4. data/INSTALL +78 -0
  5. data/MANIFEST +464 -0
  6. data/NEWS +38 -0
  7. data/README +74 -0
  8. data/Rakefile +167 -0
  9. data/TODO +29 -0
  10. data/bin/adlint +141 -0
  11. data/bin/adlint_chk +129 -0
  12. data/bin/adlint_cma +122 -0
  13. data/bin/adlint_sma +129 -0
  14. data/bin/adlintize +286 -0
  15. data/etc/conf.d/fallback/cinit.erb +11 -0
  16. data/etc/conf.d/fallback/traits.erb +216 -0
  17. data/etc/conf.d/i686-cygwin/cinit-gcc_4.3.4.erb +149 -0
  18. data/etc/conf.d/i686-cygwin/traits-gcc_4.3.4.erb +227 -0
  19. data/etc/conf.d/i686-devkit/cinit-gcc_4.5.2.erb +224 -0
  20. data/etc/conf.d/i686-devkit/traits-gcc_4.5.2.erb +226 -0
  21. data/etc/conf.d/i686-linux/cinit-gcc_4.5.1.erb +219 -0
  22. data/etc/conf.d/i686-linux/traits-gcc_4.5.1.erb +224 -0
  23. data/etc/conf.d/i686-mingw/cinit-gcc_4.6.1.erb +234 -0
  24. data/etc/conf.d/i686-mingw/traits-gcc_4.6.1.erb +226 -0
  25. data/etc/conf.d/noarch/GNUmakefile.erb +119 -0
  26. data/etc/conf.d/noarch/adlint_all_bat.erb +9 -0
  27. data/etc/conf.d/noarch/adlint_all_sh.erb +10 -0
  28. data/etc/conf.d/noarch/pinit.erb +11 -0
  29. data/etc/mesg.d/en_US/messages.yml +784 -0
  30. data/etc/mesg.d/ja_JP/messages.yml +784 -0
  31. data/lib/adlint/analyzer.rb +294 -0
  32. data/lib/adlint/c/branch.rb +251 -0
  33. data/lib/adlint/c/builtin.rb +92 -0
  34. data/lib/adlint/c/code.rb +490 -0
  35. data/lib/adlint/c/const.rb +465 -0
  36. data/lib/adlint/c/conv.rb +212 -0
  37. data/lib/adlint/c/ctrlexpr.rb +949 -0
  38. data/lib/adlint/c/domain.rb +7499 -0
  39. data/lib/adlint/c/environ.rb +133 -0
  40. data/lib/adlint/c/expr.rb +1725 -0
  41. data/lib/adlint/c/format.rb +3209 -0
  42. data/lib/adlint/c/interp.rb +1740 -0
  43. data/lib/adlint/c/lexer.rb +241 -0
  44. data/lib/adlint/c/mediator.rb +313 -0
  45. data/lib/adlint/c/message.rb +13597 -0
  46. data/lib/adlint/c/metric.rb +765 -0
  47. data/lib/adlint/c/object.rb +1018 -0
  48. data/lib/adlint/c/parser.rb +3800 -0
  49. data/lib/adlint/c/parser.y +2054 -0
  50. data/lib/adlint/c/phase.rb +712 -0
  51. data/lib/adlint/c/resolver.rb +270 -0
  52. data/lib/adlint/c/scanner.rb +248 -0
  53. data/lib/adlint/c/scope.rb +74 -0
  54. data/lib/adlint/c/syntax.rb +4279 -0
  55. data/lib/adlint/c/type.rb +7506 -0
  56. data/lib/adlint/c/util.rb +91 -0
  57. data/lib/adlint/c/value.rb +2310 -0
  58. data/lib/adlint/c.rb +56 -0
  59. data/lib/adlint/code.rb +500 -0
  60. data/lib/adlint/cpp/code.rb +189 -0
  61. data/lib/adlint/cpp/constexpr.rb +721 -0
  62. data/lib/adlint/cpp/constexpr.y +389 -0
  63. data/lib/adlint/cpp/eval.rb +1012 -0
  64. data/lib/adlint/cpp/lexer.rb +860 -0
  65. data/lib/adlint/cpp/macro.rb +637 -0
  66. data/lib/adlint/cpp/message.rb +992 -0
  67. data/lib/adlint/cpp/phase.rb +176 -0
  68. data/lib/adlint/cpp/scanner.rb +93 -0
  69. data/lib/adlint/cpp/source.rb +169 -0
  70. data/lib/adlint/cpp/subst.rb +300 -0
  71. data/lib/adlint/cpp/syntax.rb +1412 -0
  72. data/lib/adlint/cpp/util.rb +97 -0
  73. data/lib/adlint/cpp.rb +43 -0
  74. data/lib/adlint/driver.rb +147 -0
  75. data/lib/adlint/error.rb +179 -0
  76. data/lib/adlint/lang.rb +97 -0
  77. data/lib/adlint/ld/message.rb +259 -0
  78. data/lib/adlint/ld/metric.rb +57 -0
  79. data/lib/adlint/ld/object.rb +542 -0
  80. data/lib/adlint/ld/phase.rb +193 -0
  81. data/lib/adlint/ld/typedef.rb +109 -0
  82. data/lib/adlint/ld/util.rb +88 -0
  83. data/lib/adlint/ld.rb +37 -0
  84. data/lib/adlint/lexer.rb +293 -0
  85. data/lib/adlint/message.rb +368 -0
  86. data/lib/adlint/metric.rb +805 -0
  87. data/lib/adlint/monitor.rb +144 -0
  88. data/lib/adlint/phase.rb +90 -0
  89. data/lib/adlint/prelude.rb +314 -0
  90. data/lib/adlint/report.rb +617 -0
  91. data/lib/adlint/source.rb +155 -0
  92. data/lib/adlint/symbol.rb +127 -0
  93. data/lib/adlint/token.rb +215 -0
  94. data/lib/adlint/traits.rb +643 -0
  95. data/lib/adlint/util.rb +524 -0
  96. data/lib/adlint/version.rb +71 -0
  97. data/lib/adlint.rb +66 -0
  98. data/share/HEADER +45 -0
  99. data/share/demo/Makefile +110 -0
  100. data/share/demo/ambig_operator/ambig_operator.c +289 -0
  101. data/share/demo/arg_points_unset/arg_points_unset.c +37 -0
  102. data/share/demo/array_range/array_range.c +62 -0
  103. data/share/demo/bad_bitfields/bad_bitfields.c +74 -0
  104. data/share/demo/bad_brace/bad_brace.c +19 -0
  105. data/share/demo/bad_charset/abcde$.h +0 -0
  106. data/share/demo/bad_charset/bad_charset.c +22 -0
  107. data/share/demo/bad_comment/bad_comment.c +3 -0
  108. data/share/demo/bad_const/bad_const.c +19 -0
  109. data/share/demo/bad_conv/bad_conv.c +48 -0
  110. data/share/demo/bad_indent/bad_indent.c +50 -0
  111. data/share/demo/bad_init/bad_init.c +49 -0
  112. data/share/demo/bad_macro/bad_macro.c +97 -0
  113. data/share/demo/bitwise_expr/bitwise_expr.c +19 -0
  114. data/share/demo/call_by_value/call_by_value.c +26 -0
  115. data/share/demo/cross_ref/cross_ref.c +21 -0
  116. data/share/demo/dangling_else/dangling_else.c +20 -0
  117. data/share/demo/dead_code/dead_code.c +237 -0
  118. data/share/demo/deep_nest/deep_nest.c +57 -0
  119. data/share/demo/dense_switch/dense_switch.c +62 -0
  120. data/share/demo/direct_recur/direct_recur.c +15 -0
  121. data/share/demo/div_by_zero/div_by_zero.c +35 -0
  122. data/share/demo/dos_source/dos_source.c +7 -0
  123. data/share/demo/funptr_cast/funptr_cast.c +26 -0
  124. data/share/demo/goto_stmt/goto_stmt.c +19 -0
  125. data/share/demo/id_hiding/id_hiding.c +19 -0
  126. data/share/demo/ill_defined/ill_defined.c +13 -0
  127. data/share/demo/implicit_conv/implicit_conv.c +60 -0
  128. data/share/demo/implicit_int/implicit_int.c +14 -0
  129. data/share/demo/incomplete_type/incomplete_type.c +49 -0
  130. data/share/demo/indirect_recur/indirect_recur_1.c +14 -0
  131. data/share/demo/indirect_recur/indirect_recur_1.h +7 -0
  132. data/share/demo/indirect_recur/indirect_recur_2.c +12 -0
  133. data/share/demo/indirect_recur/indirect_recur_2.h +6 -0
  134. data/share/demo/indirect_recur/indirect_recur_3.c +6 -0
  135. data/share/demo/indirect_recur/indirect_recur_3.h +6 -0
  136. data/share/demo/indirect_recur/indirect_recur_4.c +25 -0
  137. data/share/demo/intro_demo/intro_demo.c +76 -0
  138. data/share/demo/intro_demo/intro_demo.h +12 -0
  139. data/share/demo/intro_demo/useless_header.h +5 -0
  140. data/share/demo/invalid_call/invalid_call.c +32 -0
  141. data/share/demo/kandr_fundef/kandr_fundef.c +10 -0
  142. data/share/demo/line_comment/line_comment.c +12 -0
  143. data/share/demo/local_decl/local_decl.c +9 -0
  144. data/share/demo/logical_trick/logical_trick.c +36 -0
  145. data/share/demo/long_sym/long_sym.c +5 -0
  146. data/share/demo/loop_var/loop_var.c +92 -0
  147. data/share/demo/malloc_or_die/malloc_or_die.c +43 -0
  148. data/share/demo/may_be_null/may_be_null.c +52 -0
  149. data/share/demo/may_be_null_arith/may_be_null_arith.c +15 -0
  150. data/share/demo/may_be_unset/may_be_unset.c +34 -0
  151. data/share/demo/mmapped_io/mmapped_io.c +23 -0
  152. data/share/demo/multi_break/multi_break.c +33 -0
  153. data/share/demo/multi_decl/multi_decl_1.c +17 -0
  154. data/share/demo/multi_decl/multi_decl_1.h +6 -0
  155. data/share/demo/multi_decl/multi_decl_2.c +13 -0
  156. data/share/demo/multi_decl/multi_decl_2.h +6 -0
  157. data/share/demo/multi_decl/multi_decl_3.c +22 -0
  158. data/share/demo/multi_def/multi_def_1.c +36 -0
  159. data/share/demo/multi_def/multi_def_1.h +6 -0
  160. data/share/demo/multi_def/multi_def_2.c +22 -0
  161. data/share/demo/multi_def/multi_def_2.h +6 -0
  162. data/share/demo/multi_def/multi_def_3.c +6 -0
  163. data/share/demo/multi_typedef/multi_typedef.c +11 -0
  164. data/share/demo/multi_typedef/multi_typedef_1.h +1 -0
  165. data/share/demo/multi_typedef/multi_typedef_2.h +1 -0
  166. data/share/demo/must_be_false/must_be_false.c +53 -0
  167. data/share/demo/must_be_null/must_be_null.c +13 -0
  168. data/share/demo/must_be_null_arith/must_be_null_arith.c +14 -0
  169. data/share/demo/must_be_true/must_be_true.c +21 -0
  170. data/share/demo/no_eof_nl/no_eof_nl.c +4 -0
  171. data/share/demo/no_void_arg/no_void_arg.c +14 -0
  172. data/share/demo/null_stmt/null_stmt.c +19 -0
  173. data/share/demo/octal_const/octal_const.c +20 -0
  174. data/share/demo/output_by_param/output_by_param.c +17 -0
  175. data/share/demo/overflow/overflow.c +74 -0
  176. data/share/demo/press_release/press_release.c +40 -0
  177. data/share/demo/retn_lvar_addr/retn_lvar_addr.c +47 -0
  178. data/share/demo/shift_expr/shift_expr.c +14 -0
  179. data/share/demo/should_be_typedef/should_be_typedef.c +51 -0
  180. data/share/demo/static_paths/static_paths.c +153 -0
  181. data/share/demo/static_vars/static_vars.c +39 -0
  182. data/share/demo/tag_hiding/tag_hiding.c +18 -0
  183. data/share/demo/tricky_incdec/tricky_incdec.c +12 -0
  184. data/share/demo/undefined_macro/undefined_macro.c +17 -0
  185. data/share/demo/uninit_vars/uninit_vars.c +28 -0
  186. data/share/demo/union_type/union_type.c +23 -0
  187. data/share/demo/unmatch_decl/unmatch_decl_1.c +12 -0
  188. data/share/demo/unmatch_decl/unmatch_decl_1.h +8 -0
  189. data/share/demo/unmatch_decl/unmatch_decl_2.c +10 -0
  190. data/share/demo/unmatch_decl/unmatch_decl_2.h +8 -0
  191. data/share/demo/unmatch_decl/unmatch_decl_3.c +7 -0
  192. data/share/demo/unmatch_paren_macro/unmatch_paren_macro.c +15 -0
  193. data/share/demo/unreachable/unreachable.c +34 -0
  194. data/share/demo/useless_exp_funs/useless_exp_funs_1.c +14 -0
  195. data/share/demo/useless_exp_funs/useless_exp_funs_1.h +1 -0
  196. data/share/demo/useless_exp_funs/useless_exp_funs_2.c +6 -0
  197. data/share/demo/useless_exp_vars/useless_export_1.c +8 -0
  198. data/share/demo/useless_exp_vars/useless_export_1.h +1 -0
  199. data/share/demo/useless_exp_vars/useless_export_2.c +7 -0
  200. data/share/demo/useless_expr/useless_expr.c +17 -0
  201. data/share/demo/useless_funs/useless_funs_1.c +21 -0
  202. data/share/demo/useless_funs/useless_funs_1.h +8 -0
  203. data/share/demo/useless_funs/useless_funs_2.c +6 -0
  204. data/share/demo/useless_header/useless_header.c +9 -0
  205. data/share/demo/useless_header/useless_header_1.h +12 -0
  206. data/share/demo/useless_header/useless_header_2.h +6 -0
  207. data/share/demo/useless_header/useless_header_3.h +9 -0
  208. data/share/demo/useless_header/useless_header_4.h +3 -0
  209. data/share/demo/useless_vars/useless_vars.c +17 -0
  210. data/share/demo/va_funcall/va_funcall.c +25 -0
  211. data/share/demo/various_fundef/various_fundef.c +36 -0
  212. data/share/demo/wchar_wstring/wchar_wstring.c +7 -0
  213. data/share/demo/wrap_around/wrap_around.c +38 -0
  214. data/share/doc/Makefile +16 -0
  215. data/share/doc/adlint_on_adqua.png +0 -0
  216. data/share/doc/adlint_on_eclipse_en.png +0 -0
  217. data/share/doc/adlint_on_eclipse_ja.png +0 -0
  218. data/share/doc/adlint_on_vim_en.png +0 -0
  219. data/share/doc/adlint_on_vim_ja.png +0 -0
  220. data/share/doc/developers_guide_ja.html +171 -0
  221. data/share/doc/developers_guide_ja.texi +87 -0
  222. data/share/doc/gen_mesg_sections.rb +39 -0
  223. data/share/doc/samples/GNUmakefile +162 -0
  224. data/share/doc/samples/adlint_traits.yml +238 -0
  225. data/share/doc/texinfo.css +22 -0
  226. data/share/doc/users_guide_en.html +39975 -0
  227. data/share/doc/users_guide_en.texi +32640 -0
  228. data/share/doc/users_guide_ja.html +40505 -0
  229. data/share/doc/users_guide_ja.texi +33189 -0
  230. data/share/logo/adlint-110.png +0 -0
  231. data/share/logo/adlint-524.png +0 -0
  232. data/share/logo/adlint.svg +4637 -0
  233. data/share/sample/README +6 -0
  234. data/share/sample/bison-2.5/adlint/GNUmakefile +170 -0
  235. data/share/sample/bison-2.5/adlint/adlint_traits.yml +225 -0
  236. data/share/sample/bison-2.5/adlint/lib/GNUmakefile +198 -0
  237. data/share/sample/bison-2.5/adlint/lib/adlint_cinit.h +228 -0
  238. data/share/sample/bison-2.5/adlint/lib/adlint_pinit.h +21 -0
  239. data/share/sample/bison-2.5/adlint/lib/adlint_traits.yml +238 -0
  240. data/share/sample/bison-2.5/adlint/src/GNUmakefile +166 -0
  241. data/share/sample/bison-2.5/adlint/src/adlint_cinit.h +228 -0
  242. data/share/sample/bison-2.5/adlint/src/adlint_pinit.h +21 -0
  243. data/share/sample/bison-2.5/adlint/src/adlint_traits.yml +239 -0
  244. data/share/sample/ctags-5.8/adlint/GNUmakefile +169 -0
  245. data/share/sample/ctags-5.8/adlint/adlint_cinit.h +219 -0
  246. data/share/sample/ctags-5.8/adlint/adlint_pinit.h +13 -0
  247. data/share/sample/ctags-5.8/adlint/adlint_traits.yml +225 -0
  248. data/share/sample/flex-2.5.35/adlint/GNUmakefile +140 -0
  249. data/share/sample/flex-2.5.35/adlint/adlint_cinit.h +219 -0
  250. data/share/sample/flex-2.5.35/adlint/adlint_pinit.h +14 -0
  251. data/share/sample/flex-2.5.35/adlint/adlint_traits.yml +225 -0
  252. data/share/sample/ruby-1.9.3-p0/adlint/GNUmakefile +314 -0
  253. data/share/sample/ruby-1.9.3-p0/adlint/adlint_traits.yml +225 -0
  254. data/share/sample/ruby-1.9.3-p0/adlint/core/GNUmakefile +204 -0
  255. data/share/sample/ruby-1.9.3-p0/adlint/core/adlint_cinit.h +228 -0
  256. data/share/sample/ruby-1.9.3-p0/adlint/core/adlint_pinit.h +28 -0
  257. data/share/sample/ruby-1.9.3-p0/adlint/core/adlint_traits.yml +240 -0
  258. data/share/sample/ruby-1.9.3-p0/adlint/enc/GNUmakefile +163 -0
  259. data/share/sample/ruby-1.9.3-p0/adlint/enc/adlint_cinit.h +228 -0
  260. data/share/sample/ruby-1.9.3-p0/adlint/enc/adlint_pinit.h +24 -0
  261. data/share/sample/ruby-1.9.3-p0/adlint/enc/adlint_traits.yml +240 -0
  262. data/share/sample/ruby-1.9.3-p0/adlint/enc-trans/GNUmakefile +149 -0
  263. data/share/sample/ruby-1.9.3-p0/adlint/enc-trans/adlint_cinit.h +228 -0
  264. data/share/sample/ruby-1.9.3-p0/adlint/enc-trans/adlint_pinit.h +24 -0
  265. data/share/sample/ruby-1.9.3-p0/adlint/enc-trans/adlint_traits.yml +240 -0
  266. data/share/sample/ruby-1.9.3-p0/adlint/ext-bigdecimal/GNUmakefile +131 -0
  267. data/share/sample/ruby-1.9.3-p0/adlint/ext-bigdecimal/adlint_cinit.h +228 -0
  268. data/share/sample/ruby-1.9.3-p0/adlint/ext-bigdecimal/adlint_pinit.h +24 -0
  269. data/share/sample/ruby-1.9.3-p0/adlint/ext-bigdecimal/adlint_traits.yml +241 -0
  270. data/share/sample/ruby-1.9.3-p0/adlint/ext-continuation/GNUmakefile +131 -0
  271. data/share/sample/ruby-1.9.3-p0/adlint/ext-continuation/adlint_cinit.h +228 -0
  272. data/share/sample/ruby-1.9.3-p0/adlint/ext-continuation/adlint_pinit.h +24 -0
  273. data/share/sample/ruby-1.9.3-p0/adlint/ext-continuation/adlint_traits.yml +241 -0
  274. data/share/sample/ruby-1.9.3-p0/adlint/ext-coverage/GNUmakefile +131 -0
  275. data/share/sample/ruby-1.9.3-p0/adlint/ext-coverage/adlint_cinit.h +228 -0
  276. data/share/sample/ruby-1.9.3-p0/adlint/ext-coverage/adlint_pinit.h +24 -0
  277. data/share/sample/ruby-1.9.3-p0/adlint/ext-coverage/adlint_traits.yml +241 -0
  278. data/share/sample/ruby-1.9.3-p0/adlint/ext-curses/GNUmakefile +131 -0
  279. data/share/sample/ruby-1.9.3-p0/adlint/ext-curses/adlint_cinit.h +228 -0
  280. data/share/sample/ruby-1.9.3-p0/adlint/ext-curses/adlint_pinit.h +24 -0
  281. data/share/sample/ruby-1.9.3-p0/adlint/ext-curses/adlint_traits.yml +241 -0
  282. data/share/sample/ruby-1.9.3-p0/adlint/ext-date/GNUmakefile +134 -0
  283. data/share/sample/ruby-1.9.3-p0/adlint/ext-date/adlint_cinit.h +228 -0
  284. data/share/sample/ruby-1.9.3-p0/adlint/ext-date/adlint_pinit.h +24 -0
  285. data/share/sample/ruby-1.9.3-p0/adlint/ext-date/adlint_traits.yml +241 -0
  286. data/share/sample/ruby-1.9.3-p0/adlint/ext-dbm/GNUmakefile +131 -0
  287. data/share/sample/ruby-1.9.3-p0/adlint/ext-dbm/adlint_cinit.h +228 -0
  288. data/share/sample/ruby-1.9.3-p0/adlint/ext-dbm/adlint_pinit.h +24 -0
  289. data/share/sample/ruby-1.9.3-p0/adlint/ext-dbm/adlint_traits.yml +241 -0
  290. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest/GNUmakefile +131 -0
  291. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest/adlint_cinit.h +228 -0
  292. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest/adlint_pinit.h +24 -0
  293. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest/adlint_traits.yml +241 -0
  294. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest-bubblebabble/GNUmakefile +131 -0
  295. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest-bubblebabble/adlint_cinit.h +228 -0
  296. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest-bubblebabble/adlint_pinit.h +24 -0
  297. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest-bubblebabble/adlint_traits.yml +242 -0
  298. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest-md5/GNUmakefile +132 -0
  299. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest-md5/adlint_cinit.h +228 -0
  300. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest-md5/adlint_pinit.h +24 -0
  301. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest-md5/adlint_traits.yml +242 -0
  302. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest-rmd160/GNUmakefile +132 -0
  303. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest-rmd160/adlint_cinit.h +228 -0
  304. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest-rmd160/adlint_pinit.h +24 -0
  305. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest-rmd160/adlint_traits.yml +242 -0
  306. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest-sha1/GNUmakefile +132 -0
  307. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest-sha1/adlint_cinit.h +228 -0
  308. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest-sha1/adlint_pinit.h +24 -0
  309. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest-sha1/adlint_traits.yml +242 -0
  310. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest-sha2/GNUmakefile +132 -0
  311. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest-sha2/adlint_cinit.h +228 -0
  312. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest-sha2/adlint_pinit.h +24 -0
  313. data/share/sample/ruby-1.9.3-p0/adlint/ext-digest-sha2/adlint_traits.yml +242 -0
  314. data/share/sample/ruby-1.9.3-p0/adlint/ext-dl/GNUmakefile +134 -0
  315. data/share/sample/ruby-1.9.3-p0/adlint/ext-dl/adlint_cinit.h +228 -0
  316. data/share/sample/ruby-1.9.3-p0/adlint/ext-dl/adlint_pinit.h +24 -0
  317. data/share/sample/ruby-1.9.3-p0/adlint/ext-dl/adlint_traits.yml +241 -0
  318. data/share/sample/ruby-1.9.3-p0/adlint/ext-dl-callback/GNUmakefile +140 -0
  319. data/share/sample/ruby-1.9.3-p0/adlint/ext-dl-callback/adlint_cinit.h +228 -0
  320. data/share/sample/ruby-1.9.3-p0/adlint/ext-dl-callback/adlint_pinit.h +24 -0
  321. data/share/sample/ruby-1.9.3-p0/adlint/ext-dl-callback/adlint_traits.yml +242 -0
  322. data/share/sample/ruby-1.9.3-p0/adlint/ext-etc/GNUmakefile +131 -0
  323. data/share/sample/ruby-1.9.3-p0/adlint/ext-etc/adlint_cinit.h +228 -0
  324. data/share/sample/ruby-1.9.3-p0/adlint/ext-etc/adlint_pinit.h +24 -0
  325. data/share/sample/ruby-1.9.3-p0/adlint/ext-etc/adlint_traits.yml +241 -0
  326. data/share/sample/ruby-1.9.3-p0/adlint/ext-fcntl/GNUmakefile +131 -0
  327. data/share/sample/ruby-1.9.3-p0/adlint/ext-fcntl/adlint_cinit.h +228 -0
  328. data/share/sample/ruby-1.9.3-p0/adlint/ext-fcntl/adlint_pinit.h +24 -0
  329. data/share/sample/ruby-1.9.3-p0/adlint/ext-fcntl/adlint_traits.yml +241 -0
  330. data/share/sample/ruby-1.9.3-p0/adlint/ext-fiber/GNUmakefile +131 -0
  331. data/share/sample/ruby-1.9.3-p0/adlint/ext-fiber/adlint_cinit.h +228 -0
  332. data/share/sample/ruby-1.9.3-p0/adlint/ext-fiber/adlint_pinit.h +24 -0
  333. data/share/sample/ruby-1.9.3-p0/adlint/ext-fiber/adlint_traits.yml +241 -0
  334. data/share/sample/ruby-1.9.3-p0/adlint/ext-fiddle/GNUmakefile +134 -0
  335. data/share/sample/ruby-1.9.3-p0/adlint/ext-fiddle/adlint_cinit.h +228 -0
  336. data/share/sample/ruby-1.9.3-p0/adlint/ext-fiddle/adlint_pinit.h +24 -0
  337. data/share/sample/ruby-1.9.3-p0/adlint/ext-fiddle/adlint_traits.yml +242 -0
  338. data/share/sample/ruby-1.9.3-p0/adlint/ext-gdbm/GNUmakefile +131 -0
  339. data/share/sample/ruby-1.9.3-p0/adlint/ext-gdbm/adlint_cinit.h +228 -0
  340. data/share/sample/ruby-1.9.3-p0/adlint/ext-gdbm/adlint_pinit.h +24 -0
  341. data/share/sample/ruby-1.9.3-p0/adlint/ext-gdbm/adlint_traits.yml +241 -0
  342. data/share/sample/ruby-1.9.3-p0/adlint/ext-iconv/GNUmakefile +131 -0
  343. data/share/sample/ruby-1.9.3-p0/adlint/ext-iconv/adlint_cinit.h +228 -0
  344. data/share/sample/ruby-1.9.3-p0/adlint/ext-iconv/adlint_pinit.h +24 -0
  345. data/share/sample/ruby-1.9.3-p0/adlint/ext-iconv/adlint_traits.yml +241 -0
  346. data/share/sample/ruby-1.9.3-p0/adlint/ext-io-console/GNUmakefile +131 -0
  347. data/share/sample/ruby-1.9.3-p0/adlint/ext-io-console/adlint_cinit.h +228 -0
  348. data/share/sample/ruby-1.9.3-p0/adlint/ext-io-console/adlint_pinit.h +24 -0
  349. data/share/sample/ruby-1.9.3-p0/adlint/ext-io-console/adlint_traits.yml +241 -0
  350. data/share/sample/ruby-1.9.3-p0/adlint/ext-io-nonblock/GNUmakefile +131 -0
  351. data/share/sample/ruby-1.9.3-p0/adlint/ext-io-nonblock/adlint_cinit.h +228 -0
  352. data/share/sample/ruby-1.9.3-p0/adlint/ext-io-nonblock/adlint_pinit.h +24 -0
  353. data/share/sample/ruby-1.9.3-p0/adlint/ext-io-nonblock/adlint_traits.yml +241 -0
  354. data/share/sample/ruby-1.9.3-p0/adlint/ext-io-wait/GNUmakefile +131 -0
  355. data/share/sample/ruby-1.9.3-p0/adlint/ext-io-wait/adlint_cinit.h +228 -0
  356. data/share/sample/ruby-1.9.3-p0/adlint/ext-io-wait/adlint_pinit.h +24 -0
  357. data/share/sample/ruby-1.9.3-p0/adlint/ext-io-wait/adlint_traits.yml +241 -0
  358. data/share/sample/ruby-1.9.3-p0/adlint/ext-json-generator/GNUmakefile +131 -0
  359. data/share/sample/ruby-1.9.3-p0/adlint/ext-json-generator/adlint_cinit.h +228 -0
  360. data/share/sample/ruby-1.9.3-p0/adlint/ext-json-generator/adlint_pinit.h +24 -0
  361. data/share/sample/ruby-1.9.3-p0/adlint/ext-json-generator/adlint_traits.yml +241 -0
  362. data/share/sample/ruby-1.9.3-p0/adlint/ext-json-parser/GNUmakefile +131 -0
  363. data/share/sample/ruby-1.9.3-p0/adlint/ext-json-parser/adlint_cinit.h +228 -0
  364. data/share/sample/ruby-1.9.3-p0/adlint/ext-json-parser/adlint_pinit.h +24 -0
  365. data/share/sample/ruby-1.9.3-p0/adlint/ext-json-parser/adlint_traits.yml +241 -0
  366. data/share/sample/ruby-1.9.3-p0/adlint/ext-mathn-complex/GNUmakefile +131 -0
  367. data/share/sample/ruby-1.9.3-p0/adlint/ext-mathn-complex/adlint_cinit.h +228 -0
  368. data/share/sample/ruby-1.9.3-p0/adlint/ext-mathn-complex/adlint_pinit.h +24 -0
  369. data/share/sample/ruby-1.9.3-p0/adlint/ext-mathn-complex/adlint_traits.yml +241 -0
  370. data/share/sample/ruby-1.9.3-p0/adlint/ext-mathn-rational/GNUmakefile +131 -0
  371. data/share/sample/ruby-1.9.3-p0/adlint/ext-mathn-rational/adlint_cinit.h +228 -0
  372. data/share/sample/ruby-1.9.3-p0/adlint/ext-mathn-rational/adlint_pinit.h +24 -0
  373. data/share/sample/ruby-1.9.3-p0/adlint/ext-mathn-rational/adlint_traits.yml +241 -0
  374. data/share/sample/ruby-1.9.3-p0/adlint/ext-nkf/GNUmakefile +131 -0
  375. data/share/sample/ruby-1.9.3-p0/adlint/ext-nkf/adlint_cinit.h +228 -0
  376. data/share/sample/ruby-1.9.3-p0/adlint/ext-nkf/adlint_pinit.h +24 -0
  377. data/share/sample/ruby-1.9.3-p0/adlint/ext-nkf/adlint_traits.yml +241 -0
  378. data/share/sample/ruby-1.9.3-p0/adlint/ext-openssl/GNUmakefile +162 -0
  379. data/share/sample/ruby-1.9.3-p0/adlint/ext-openssl/adlint_cinit.h +228 -0
  380. data/share/sample/ruby-1.9.3-p0/adlint/ext-openssl/adlint_pinit.h +24 -0
  381. data/share/sample/ruby-1.9.3-p0/adlint/ext-openssl/adlint_traits.yml +241 -0
  382. data/share/sample/ruby-1.9.3-p0/adlint/ext-pathname/GNUmakefile +131 -0
  383. data/share/sample/ruby-1.9.3-p0/adlint/ext-pathname/adlint_cinit.h +228 -0
  384. data/share/sample/ruby-1.9.3-p0/adlint/ext-pathname/adlint_pinit.h +24 -0
  385. data/share/sample/ruby-1.9.3-p0/adlint/ext-pathname/adlint_traits.yml +241 -0
  386. data/share/sample/ruby-1.9.3-p0/adlint/ext-psych/GNUmakefile +135 -0
  387. data/share/sample/ruby-1.9.3-p0/adlint/ext-psych/adlint_cinit.h +228 -0
  388. data/share/sample/ruby-1.9.3-p0/adlint/ext-psych/adlint_pinit.h +24 -0
  389. data/share/sample/ruby-1.9.3-p0/adlint/ext-psych/adlint_traits.yml +241 -0
  390. data/share/sample/ruby-1.9.3-p0/adlint/ext-pty/GNUmakefile +131 -0
  391. data/share/sample/ruby-1.9.3-p0/adlint/ext-pty/adlint_cinit.h +228 -0
  392. data/share/sample/ruby-1.9.3-p0/adlint/ext-pty/adlint_pinit.h +24 -0
  393. data/share/sample/ruby-1.9.3-p0/adlint/ext-pty/adlint_traits.yml +241 -0
  394. data/share/sample/ruby-1.9.3-p0/adlint/ext-racc-cparse/GNUmakefile +131 -0
  395. data/share/sample/ruby-1.9.3-p0/adlint/ext-racc-cparse/adlint_cinit.h +228 -0
  396. data/share/sample/ruby-1.9.3-p0/adlint/ext-racc-cparse/adlint_pinit.h +24 -0
  397. data/share/sample/ruby-1.9.3-p0/adlint/ext-racc-cparse/adlint_traits.yml +241 -0
  398. data/share/sample/ruby-1.9.3-p0/adlint/ext-readline/GNUmakefile +131 -0
  399. data/share/sample/ruby-1.9.3-p0/adlint/ext-readline/adlint_cinit.h +228 -0
  400. data/share/sample/ruby-1.9.3-p0/adlint/ext-readline/adlint_pinit.h +24 -0
  401. data/share/sample/ruby-1.9.3-p0/adlint/ext-readline/adlint_traits.yml +241 -0
  402. data/share/sample/ruby-1.9.3-p0/adlint/ext-ripper/GNUmakefile +131 -0
  403. data/share/sample/ruby-1.9.3-p0/adlint/ext-ripper/adlint_cinit.h +228 -0
  404. data/share/sample/ruby-1.9.3-p0/adlint/ext-ripper/adlint_pinit.h +24 -0
  405. data/share/sample/ruby-1.9.3-p0/adlint/ext-ripper/adlint_traits.yml +241 -0
  406. data/share/sample/ruby-1.9.3-p0/adlint/ext-sdbm/GNUmakefile +132 -0
  407. data/share/sample/ruby-1.9.3-p0/adlint/ext-sdbm/adlint_cinit.h +228 -0
  408. data/share/sample/ruby-1.9.3-p0/adlint/ext-sdbm/adlint_pinit.h +24 -0
  409. data/share/sample/ruby-1.9.3-p0/adlint/ext-sdbm/adlint_traits.yml +241 -0
  410. data/share/sample/ruby-1.9.3-p0/adlint/ext-socket/GNUmakefile +144 -0
  411. data/share/sample/ruby-1.9.3-p0/adlint/ext-socket/adlint_cinit.h +228 -0
  412. data/share/sample/ruby-1.9.3-p0/adlint/ext-socket/adlint_pinit.h +24 -0
  413. data/share/sample/ruby-1.9.3-p0/adlint/ext-socket/adlint_traits.yml +241 -0
  414. data/share/sample/ruby-1.9.3-p0/adlint/ext-stringio/GNUmakefile +131 -0
  415. data/share/sample/ruby-1.9.3-p0/adlint/ext-stringio/adlint_cinit.h +228 -0
  416. data/share/sample/ruby-1.9.3-p0/adlint/ext-stringio/adlint_pinit.h +24 -0
  417. data/share/sample/ruby-1.9.3-p0/adlint/ext-stringio/adlint_traits.yml +241 -0
  418. data/share/sample/ruby-1.9.3-p0/adlint/ext-strscan/GNUmakefile +131 -0
  419. data/share/sample/ruby-1.9.3-p0/adlint/ext-strscan/adlint_cinit.h +228 -0
  420. data/share/sample/ruby-1.9.3-p0/adlint/ext-strscan/adlint_pinit.h +24 -0
  421. data/share/sample/ruby-1.9.3-p0/adlint/ext-strscan/adlint_traits.yml +241 -0
  422. data/share/sample/ruby-1.9.3-p0/adlint/ext-syck/GNUmakefile +140 -0
  423. data/share/sample/ruby-1.9.3-p0/adlint/ext-syck/adlint_cinit.h +228 -0
  424. data/share/sample/ruby-1.9.3-p0/adlint/ext-syck/adlint_pinit.h +24 -0
  425. data/share/sample/ruby-1.9.3-p0/adlint/ext-syck/adlint_traits.yml +241 -0
  426. data/share/sample/ruby-1.9.3-p0/adlint/ext-syslog/GNUmakefile +131 -0
  427. data/share/sample/ruby-1.9.3-p0/adlint/ext-syslog/adlint_cinit.h +228 -0
  428. data/share/sample/ruby-1.9.3-p0/adlint/ext-syslog/adlint_pinit.h +24 -0
  429. data/share/sample/ruby-1.9.3-p0/adlint/ext-syslog/adlint_traits.yml +241 -0
  430. data/share/sample/ruby-1.9.3-p0/adlint/ext-zlib/GNUmakefile +131 -0
  431. data/share/sample/ruby-1.9.3-p0/adlint/ext-zlib/adlint_cinit.h +228 -0
  432. data/share/sample/ruby-1.9.3-p0/adlint/ext-zlib/adlint_pinit.h +24 -0
  433. data/share/sample/ruby-1.9.3-p0/adlint/ext-zlib/adlint_traits.yml +241 -0
  434. data/share/sample/screen-4.0.3/adlint/GNUmakefile +162 -0
  435. data/share/sample/screen-4.0.3/adlint/adlint_cinit.h +228 -0
  436. data/share/sample/screen-4.0.3/adlint/adlint_pinit.h +21 -0
  437. data/share/sample/screen-4.0.3/adlint/adlint_traits.yml +238 -0
  438. data/share/sample/vim-7.3/adlint/vim/GNUmakefile +185 -0
  439. data/share/sample/vim-7.3/adlint/vim/adlint_cinit.h +228 -0
  440. data/share/sample/vim-7.3/adlint/vim/adlint_pinit.h +25 -0
  441. data/share/sample/vim-7.3/adlint/vim/adlint_traits.yml +250 -0
  442. data/share/sample/vim-7.3/adlint/xxd/GNUmakefile +131 -0
  443. data/share/sample/vim-7.3/adlint/xxd/adlint_cinit.h +228 -0
  444. data/share/sample/vim-7.3/adlint/xxd/adlint_pinit.h +24 -0
  445. data/share/sample/vim-7.3/adlint/xxd/adlint_traits.yml +237 -0
  446. data/share/sample/zsh-4.3.15/adlint/GNUmakefile +146 -0
  447. data/share/sample/zsh-4.3.15/adlint/adlint_traits.yml +225 -0
  448. data/share/sample/zsh-4.3.15/adlint/builtins/GNUmakefile +132 -0
  449. data/share/sample/zsh-4.3.15/adlint/builtins/adlint_cinit.h +228 -0
  450. data/share/sample/zsh-4.3.15/adlint/builtins/adlint_pinit.h +24 -0
  451. data/share/sample/zsh-4.3.15/adlint/builtins/adlint_traits.yml +240 -0
  452. data/share/sample/zsh-4.3.15/adlint/core/GNUmakefile +153 -0
  453. data/share/sample/zsh-4.3.15/adlint/core/adlint_cinit.h +228 -0
  454. data/share/sample/zsh-4.3.15/adlint/core/adlint_pinit.h +23 -0
  455. data/share/sample/zsh-4.3.15/adlint/core/adlint_traits.yml +239 -0
  456. data/share/sample/zsh-4.3.15/adlint/modules/GNUmakefile +147 -0
  457. data/share/sample/zsh-4.3.15/adlint/modules/adlint_cinit.h +228 -0
  458. data/share/sample/zsh-4.3.15/adlint/modules/adlint_pinit.h +24 -0
  459. data/share/sample/zsh-4.3.15/adlint/modules/adlint_traits.yml +240 -0
  460. data/share/sample/zsh-4.3.15/adlint/zle/GNUmakefile +144 -0
  461. data/share/sample/zsh-4.3.15/adlint/zle/adlint_cinit.h +228 -0
  462. data/share/sample/zsh-4.3.15/adlint/zle/adlint_pinit.h +24 -0
  463. data/share/sample/zsh-4.3.15/adlint/zle/adlint_traits.yml +239 -0
  464. data/spec/MUST_WRITE_SPECS_WITH_RSPEC +0 -0
  465. metadata +532 -0
@@ -0,0 +1,784 @@
1
+ # ___ ____ __ ___ _________
2
+ # / | / _ |/ / / / | / /__ __/ Source Code Static Analyzer
3
+ # / /| | / / / / / / / |/ / / / AdLint - Advanced Lint
4
+ # / __ |/ /_/ / /___/ / /| / / /
5
+ # /_/ |_|_____/_____/_/_/ |_/ /_/ Copyright (C) 2010-2012, OGIS-RI Co.,Ltd.
6
+ #
7
+ # This file is part of AdLint.
8
+ #
9
+ # AdLint is free software: you can redistribute it and/or modify it under the
10
+ # terms of the GNU General Public License as published by the Free Software
11
+ # Foundation, either version 3 of the License, or (at your option) any later
12
+ # version.
13
+ #
14
+ # AdLint is distributed in the hope that it will be useful, but WITHOUT ANY
15
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16
+ # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17
+ #
18
+ # You should have received a copy of the GNU General Public License along with
19
+ # AdLint. If not, see <http://www.gnu.org/licenses/>.
20
+ #
21
+ #
22
+ # Default message catalog for en_US locale.
23
+ #
24
+ # *********************************
25
+ # ***** DO NOT EDIT THIS FILE *****
26
+ # *********************************
27
+ #
28
+ # To override default messages, edit `change_list' section of the traits file.
29
+ #
30
+ # [Example]
31
+ #
32
+ # % tail traits.yml
33
+ # message_traits:
34
+ # change_list:
35
+ # W9999: "Your custom message for the warning of #9999."
36
+ # X9999: "Your custom message for the fatal error of #9999."
37
+ # E9999: "Your custom message for the error of #9999."
38
+
39
+ version: "1.0.0"
40
+
41
+ message_definition:
42
+ X0001: "An unknown exception `%s' is found."
43
+ X0002: "An illegal message ID `%s' is found."
44
+ X0003: "Analysis processing has been stopped due to unrecoverable error. For the details, refer to `%s' and `%s'."
45
+ X0004: "An illegal message format `%s' is found."
46
+ E0001: "An identifier is required in this position."
47
+ E0002: "A comma is required in this position."
48
+ E0003: "Invalid token is found behind identifier list (identifier_list)."
49
+ E0004: "Corresponding #endif doesn't found."
50
+ E0005: "#else group (else_group) must describe after #elif group (elif_groups)."
51
+ E0006: "Syntax error is found in token `%s'."
52
+ E0007: "Syntax error is found in conditional expression token `%s'. Conditional expression evaluate as false."
53
+ E0008: "Syntax error is found in token `%s'."
54
+ E0009: "A header file of <%s> doesn't found."
55
+ E0010: "A header file of \"%s\" doesn't found."
56
+ E0011: "Syntax error is found under analysis of <%s>."
57
+ E0012: "Syntax error is found under analysis of \"%s\"."
58
+ E0013: "Statement cannot include in syntax."
59
+ E0014: "'&&' monadic operator to get a label address is GCC original add-on."
60
+ E0015: "'goto' statement with specified label address is GCC original add-on."
61
+ E0016: "Unfinished comment block is found."
62
+ W0001: "Nesting depth of round bracket`()' exceed 32. This program doesn't meet the strict ISO C90 standards of the term."
63
+ W0002: "Identifier and declaration of formal argument described separately in the definition of function `%s()' is old style."
64
+ W0003: "This switch statement doesn't have default label."
65
+ W0007: "'break' or 'return' statement doesn't found in the last 'case' or 'default' section."
66
+ W0010: "There is a side-effect in this ternary operator (conditional operator)."
67
+ W0013: "'continue' statement is used in repetition statement."
68
+ W0016: "The field width of conversion specifier exceeds 509 characters in 'printf' function."
69
+ W0017: "The field width of conversion specifier exceeds 509 characters in 'scanf' function."
70
+ W0018: "This accuracy width of conversion specifier exceeds 509 characters."
71
+ W0019: "This pointer cast is danger because it delete const qualifier."
72
+ W0021: "This pointer cast is danger because it delete volatile qualifier."
73
+ W0023: "Arithmetic operation is being made by pointer variable."
74
+ W0024: "Increment or decrement is being made by pointer variable."
75
+ W0025: "A file is already included by directly."
76
+ W0026: "A file is already included by indirectly."
77
+ W0027: "Comparison operation is being made by pointer variable."
78
+ W0028: "Indirect referencing is being made by NULL pointer."
79
+ W0030: "Arithmetic operation is being made by NULL pointer."
80
+ W0031: "A formal argument `%s' is not used in this function."
81
+ W0033: "A label of `%s:' is not used in this function. It might be removed."
82
+ W0035: "Right operand of ``&&' or `||' must arithmetic type or pointer type."
83
+ W0036: "The number of qualification operator exceeds 12.This program doesn't meet the strict ISO C90 standards of the term."
84
+ W0037: "Nest of structure or union exceeds 15. This program doesn't meet the strict ISO C90 standards of the term."
85
+ W0038: "The size of object `%s' exceeds 32767 bytes. This program doesn't meet the strict ISO C90 standards of the term."
86
+ W0039: "The number of local identifier in the block exceeds 127. This program doesn't meet the strict ISO C90 standards of the term."
87
+ W0040: "A bit field is declared without 'signed' or 'unsigned'."
88
+ W0041: "The number of member of structure or union exceeds 127.This program doesn't meet the strict ISO C90 standards of the term."
89
+ W0042: "The number of enumeration literal exceeds 127. This program doesn't meet the strict ISO C90 standards of the term."
90
+ W0043: "The initial value of the array is short of declared array's size. The residual array will be initialized by zero."
91
+ W0049: "Nest of control structure exceeds 15. This program doesn't meet the strict ISO C90 standards of the term."
92
+ W0050: "The number of 'case' label exceeds 257. This program doesn't meet the strict ISO C90 standards of the term."
93
+ W0051: "An external identifier name cannot distinguish other identifier name (ex:`%s') from the range of number of characters defined in linker property."
94
+ W0052: "A identifier name cannot distinguish other identifier name (ex:`%s') from the range of number of characters defined in compile property."
95
+ W0053: "Nest of `#include \"%s\"' exceeds 8.This program doesn't meet the strict ISO C90 standards of the term."
96
+ W0054: "The maximum number of `#if...' nest exceeds 8. This program doesn't meet the strict ISO C90 standards of the term."
97
+ W0055: "The number of macro definition exceeds 1024. This program doesn't meet the strict ISO C90 standards of the term."
98
+ W0056: "The number of formal argument of function-like macro exceeds 31.This program doesn't meet the strict ISO C90 standards of the term."
99
+ W0057: "The number of actual argument of function-like macro exceeds 31.This program doesn't meet the strict ISO C90 standards of the term."
100
+ W0058: "The number of characters of string literal exceeds 509.This program doesn't meet the strict ISO C90 standards of the term."
101
+ W0059: "Ctrl-M(^M) control character is found at the end of line."
102
+ W0060: "Ctrl-Z(^Z) control character is found in this file."
103
+ W0061: "`%s' is not actual reserved keyword. It will be considered as language extension and ignored."
104
+ W0062: "`__typeof__' is not supported ISO C standards. It will be considered as language extension."
105
+ W0063: "`__alignof__'is not supported ISO C standards. It will be considered as language extension.."
106
+ W0064: "A binary integer literal is used. This is the language extension."
107
+ W0065: "Must not cast left operand of assignment operator."
108
+ W0066: "`main()' function must `int (void)' or `int (int, char *[])'."
109
+ W0067: "Directly access to the member of nested structure. This is the language extension."
110
+ W0068: "`.' is used to get access to bit. This is the language extension."
111
+ W0069: "`/*' is found in the beginning with `/*' comments. Nested comment doesn't allowed in ISO C standards."
112
+ W0070: "Included <%s> is not referenced in the translation unit. It can be removed."
113
+ W0071: "Included \"%s\" is not referenced in the translation unit. It can be removed."
114
+ W0072: "A character except for basic source character is used in header file name."
115
+ W0073: "No include guard in this include file."
116
+ W0076: "This hexadecimal literal doesn't contained within suffix `U' or `u'."
117
+ W0077: "Lower case`l' is added to integer or floating-point number."
118
+ W0078: "A function is declared without list of formal argument."
119
+ W0079: "This array cannot keep final character `\\0' which initial value of string literal."
120
+ W0080: "A global object which const qualified is defined without explicitly initialized."
121
+ W0081: "A monadic operator`-' becomes unsigned type if it use 'unsigned int' type, 'unsigned long' type or 'unsigned long' type operand."
122
+ W0082: "A monadic operator `-' is used operand which the latency type is a unsigned operand."
123
+ W0084: "Left operand of this comma operator`,' doesn't described the statement which has side-effects."
124
+ W0085: "This statement doesn't have side-effects. It is highly possible that it having error."
125
+ W0086: "Second or third operand is verbose statement which doesn't have side-effects in ternary operator (conditional operator)."
126
+ W0087: "The right side statement of comma operator is verbose statement which doesn't have side-effects."
127
+ W0088: "The right side statement of logical operator is verbose statement which doesn't have side-effects."
128
+ W0093: "It divided by a value which possibly zero."
129
+ W0094: "UNUSABLE"
130
+ W0096: "It divided by a constant expression which definitely zero."
131
+ W0097: "It divided by zero."
132
+ W0100: "The value of variable `%s' is not change. It can be declarable with 'const'."
133
+ W0101: "An address of auto variable is substituted for a pointer which has a longer life. This program is danger."
134
+ W0102: "An address of auto variable is returned via formal argument to functions. This program is danger."
135
+ W0103: "An address of auto variable is returned as return value from a function. This program is danger."
136
+ W0104: "The value of formal argument `%s' is not change. It can be declarable with 'const'."
137
+ W0105: "The object which points the formal argument `%s' is not change. It can be declaring as pointer type which points const object."
138
+ W0107: "An address of auto variable is substituted for local pointer with 'static' option. This program is danger."
139
+ W0108: "Assignment operator is used in logical operation expression."
140
+ W0109: "The definition of this function doesn't found. It consider it was omitted, and insert `extern int %s()'."
141
+ W0110: "A variable number with floating-point type is used by loop counter in for statement."
142
+ W0112: "The statement of floating-point compares by equivalent operator."
143
+ W0114: "This control expression is not explicit logical operation."
144
+ W0115: "Unsigned left shift operator `<<' drop the high-order bit."
145
+ W0116: "Unsigned left shift operator `<<' can be drop high-order bit."
146
+ W0117: "The definition of `%s' has an external coupling, but the declaration doesn't find before its definition."
147
+ W0118: "The definition of `%s' which has external coupling doesn't find in header file."
148
+ W0119: "An implicit type conversion from char to signed char."
149
+ W0120: "An implicit type conversion from char to unsigned char."
150
+ W0121: "An implicit type conversion from char to short."
151
+ W0122: "An implicit type conversion from char to unsigned short."
152
+ W0123: "An implicit type conversion from char to int."
153
+ W0124: "An implicit type conversion from char to unsigned int."
154
+ W0125: "An implicit type conversion from char to long."
155
+ W0126: "An implicit type conversion from char to unsigned long."
156
+ W0127: "An implicit type conversion from char to float."
157
+ W0128: "An implicit type conversion from char to double."
158
+ W0129: "An implicit type conversion from char to long double."
159
+ W0130: "An implicit type conversion from char to long long."
160
+ W0131: "An implicit type conversion from char to unsigned long long."
161
+ W0132: "An implicit type conversion from unsigned char to char."
162
+ W0133: "An implicit type conversion from signed char to char."
163
+ W0134: "An implicit type conversion from short to char."
164
+ W0135: "An implicit type conversion from unsigned short to char."
165
+ W0136: "An implicit type conversion from int to char."
166
+ W0137: "An implicit type conversion from unsigned int to char."
167
+ W0138: "An implicit type conversion from long to char."
168
+ W0139: "An implicit type conversion from unsigned long to char."
169
+ W0140: "An implicit type conversion from long long to char."
170
+ W0141: "An implicit type conversion from unsigned long long to char."
171
+ W0142: "An implicit type conversion from unsigned char to signed char."
172
+ W0143: "An implicit type conversion from unsigned short to signed char."
173
+ W0144: "An implicit type conversion from unsigned short to short."
174
+ W0145: "An implicit type conversion from unsigned int to signed char."
175
+ W0146: "An implicit type conversion from unsigned int to short."
176
+ W0147: "An implicit type conversion from unsigned int to int."
177
+ W0148: "An implicit type conversion from unsigned long to signed char."
178
+ W0149: "An implicit type conversion from unsigned long to short."
179
+ W0150: "An implicit type conversion from unsigned long to int."
180
+ W0151: "An implicit type conversion from unsigned long to long."
181
+ W0152: "An implicit type conversion from unsigned long long to signed char."
182
+ W0153: "An implicit type conversion from unsigned long long to short."
183
+ W0154: "An implicit type conversion from unsigned long long to int."
184
+ W0155: "An implicit type conversion from unsigned long long to long."
185
+ W0156: "An implicit type conversion from unsigned long long to long long."
186
+ W0157: "An implicit type conversion from signed char to unsigned char."
187
+ W0158: "An implicit type conversion from signed char to unsigned short."
188
+ W0159: "An implicit type conversion from signed char to unsigned int."
189
+ W0160: "An implicit type conversion from signed char to unsigned long."
190
+ W0161: "An implicit type conversion from short to unsigned char."
191
+ W0162: "An implicit type conversion from short to unsigned short."
192
+ W0163: "An implicit type conversion from short to unsigned int."
193
+ W0164: "An implicit type conversion from short to unsigned long."
194
+ W0165: "An implicit type conversion from int to unsigned char."
195
+ W0166: "An implicit type conversion from int to unsigned short."
196
+ W0167: "An implicit type conversion from int to unsigned int."
197
+ W0168: "An implicit type conversion from int to unsigned long."
198
+ W0169: "An implicit type conversion from long to unsigned char."
199
+ W0170: "An implicit type conversion from long to unsigned short."
200
+ W0171: "An implicit type conversion from long to unsigned int."
201
+ W0172: "An implicit type conversion from long to unsigned long."
202
+ W0173: "An implicit type conversion from signed char to unsigned long long."
203
+ W0174: "An implicit type conversion from short to unsigned long long."
204
+ W0175: "An implicit type conversion from int to unsigned long long."
205
+ W0176: "An implicit type conversion from long to unsigned long long."
206
+ W0177: "An implicit type conversion from long long to unsigned char."
207
+ W0178: "An implicit type conversion from long long to unsigned short."
208
+ W0179: "An implicit type conversion from long long to unsigned int."
209
+ W0180: "An implicit type conversion from long long to unsigned long."
210
+ W0181: "An implicit type conversion from long long to unsigned long long."
211
+ W0182: "An implicit type conversion from unsigned char to float."
212
+ W0183: "An implicit type conversion from unsigned char to double."
213
+ W0184: "An implicit type conversion from unsigned char to long double."
214
+ W0185: "An implicit type conversion from signed char to float."
215
+ W0186: "An implicit type conversion from signed char to double."
216
+ W0187: "An implicit type conversion from signed char to long double."
217
+ W0188: "An implicit type conversion from short to float."
218
+ W0189: "An implicit type conversion from short to double."
219
+ W0190: "An implicit type conversion from short to long double."
220
+ W0191: "An implicit type conversion from unsigned short to float."
221
+ W0192: "An implicit type conversion from unsigned short to double."
222
+ W0193: "An implicit type conversion from unsigned short to long double."
223
+ W0194: "An implicit type conversion from int to float."
224
+ W0195: "An implicit type conversion from int to double."
225
+ W0196: "An implicit type conversion from int to long double."
226
+ W0197: "An implicit type conversion from unsigned int to float."
227
+ W0198: "An implicit type conversion from unsigned int to double."
228
+ W0199: "An implicit type conversion from unsigned int to long double."
229
+ W0200: "An implicit type conversion from long to float."
230
+ W0201: "An implicit type conversion from long to double."
231
+ W0202: "An implicit type conversion from long to long double."
232
+ W0203: "An implicit type conversion from unsigned long to float."
233
+ W0204: "An implicit type conversion from unsigned long to double."
234
+ W0205: "An implicit type conversion from unsigned long to long double."
235
+ W0206: "An implicit type conversion from long long to float."
236
+ W0207: "An implicit type conversion from long long to double."
237
+ W0208: "An implicit type conversion from long long to long double."
238
+ W0209: "An implicit type conversion from unsigned long long to float."
239
+ W0210: "An implicit type conversion from unsigned long long to double."
240
+ W0211: "An implicit type conversion from unsigned long long to long double."
241
+ W0212: "An implicit type conversion from float to char."
242
+ W0213: "An implicit type conversion from float to signed char."
243
+ W0214: "An implicit type conversion from float to unsigned char."
244
+ W0215: "An implicit type conversion from float to short."
245
+ W0216: "An implicit type conversion from float to unsigned short."
246
+ W0217: "An implicit type conversion from float to int."
247
+ W0218: "An implicit type conversion from float to unsigned int."
248
+ W0219: "An implicit type conversion from float to long."
249
+ W0220: "An implicit type conversion from float to unsigned long."
250
+ W0221: "An implicit type conversion from double to char."
251
+ W0222: "An implicit type conversion from double to signed char."
252
+ W0223: "An implicit type conversion from double to unsigned char."
253
+ W0224: "An implicit type conversion from double to short."
254
+ W0225: "An implicit type conversion from double to unsigned short."
255
+ W0226: "An implicit type conversion from double to int."
256
+ W0227: "An implicit type conversion from double to unsigned int."
257
+ W0228: "An implicit type conversion from double to long."
258
+ W0229: "An implicit type conversion from double to unsigned long."
259
+ W0230: "An implicit type conversion from long double to char."
260
+ W0231: "An implicit type conversion from long double to signed char."
261
+ W0232: "An implicit type conversion from long double to unsigned char."
262
+ W0233: "An implicit type conversion from long double to short."
263
+ W0234: "An implicit type conversion from long double to unsigned short."
264
+ W0235: "An implicit type conversion from long double to int."
265
+ W0236: "An implicit type conversion from long double to unsigned int."
266
+ W0237: "An implicit type conversion from long double to long."
267
+ W0238: "An implicit type conversion from long double to unsigned long."
268
+ W0239: "An implicit type conversion from float to long long."
269
+ W0240: "An implicit type conversion from float to unsigned long long."
270
+ W0241: "An implicit type conversion from double to long long."
271
+ W0242: "An implicit type conversion from double to unsigned long long."
272
+ W0243: "An implicit type conversion from long double to long long."
273
+ W0244: "An implicit type conversion from long double to unsigned long long."
274
+ W0245: "An implicit type conversion from unsigned char to short."
275
+ W0246: "An implicit type conversion from unsigned char to int."
276
+ W0247: "An implicit type conversion from unsigned char to long."
277
+ W0248: "An implicit type conversion from unsigned short to int."
278
+ W0249: "An implicit type conversion from unsigned short to long."
279
+ W0250: "An implicit type conversion from unsigned int to long."
280
+ W0251: "An implicit type conversion from unsigned char to long long."
281
+ W0252: "An implicit type conversion from unsigned short to long long."
282
+ W0253: "An implicit type conversion from unsigned int to long long."
283
+ W0254: "An implicit type conversion from unsigned long to long long."
284
+ W0255: "A value of char type is returned from `signed char %s()' function."
285
+ W0256: "A value of char type is returned from `unsigned char %s()' function."
286
+ W0257: "A value of char type is returned from `short %s()' function."
287
+ W0258: "A value of char type is returned from `unsigned short %s()' function."
288
+ W0259: "A value of char type is returned from `int %s()' function."
289
+ W0260: "A value of char type is returned from `unsigned int %s()' function."
290
+ W0261: "A value of char type is returned from `long %s()' function."
291
+ W0262: "A value of char type is returned from `unsigned long %s()' function."
292
+ W0263: "A value of char type is returned from `float %s()' function."
293
+ W0264: "A value of char type is returned from `double %s()' function."
294
+ W0265: "A value of char type is returned from `long double %s()' function."
295
+ W0266: "A value of char type is returned from `long long %s()' function."
296
+ W0267: "A value of char type is returned from `unsigned long long %s()' function."
297
+ W0268: "A value of unsigned char type is returned from`char %s()' function."
298
+ W0269: "A value of signed char type is returned from`char %s()' function."
299
+ W0270: "A value of short type is returned from `char %s()' function."
300
+ W0271: "A value of unsigned short type is returned from `char %s()' function."
301
+ W0272: "A value of int type is returned from `char %s()' function."
302
+ W0273: "A value of unsigned int type is returned from `char %s()' function."
303
+ W0274: "A value of long type is returned from `char %s()' function."
304
+ W0275: "A value of unsigned long type is returned from `char %s()' function."
305
+ W0276: "A value of long long type is returned from `char %s()' function."
306
+ W0277: "A value of unsigned long long type is returned from `char %s()' function."
307
+ W0278: "A value of unsigned char type is returned from `signed char %s()' function."
308
+ W0279: "A value of unsigned short type is returned from `signed char %s()' function."
309
+ W0280: "A value of unsigned short type is returned from `short %s()' function."
310
+ W0281: "A value of unsigned int type is returned from `signed char %s()' function."
311
+ W0282: "A value of unsigned int type is returned from `short %s()' function."
312
+ W0283: "A value of unsigned int type is returned from `int %s()' function."
313
+ W0284: "A value of unsigned long type is returned from `signed char %s()' function."
314
+ W0285: "A value of unsigned long type is returned from `short %s()' function."
315
+ W0286: "A value of unsigned long type is returned from `int %s()' function."
316
+ W0287: "A value of unsigned long type is returned from `long %s()' function."
317
+ W0288: "A value of unsigned long long type is returned from `signed char %s()' function."
318
+ W0289: "A value of unsigned long long type is returned from `short %s()' function."
319
+ W0290: "A value of unsigned long long type is returned from `int %s()' function."
320
+ W0291: "A value of unsigned long long type is returned from `long %s()' function."
321
+ W0292: "A value of unsigned long long type is returned from `long long %s()' function."
322
+ W0293: "A value of signed char type is returned from `unsigned char %s()' function."
323
+ W0294: "A value of signed char type is returned from `unsigned short %s()' function."
324
+ W0295: "A value of signed char type is returned from `unsigned int %s()' function."
325
+ W0296: "A value of signed char type is returned from `unsigned long %s()' function."
326
+ W0297: "A value of short type is returned from `unsigned char %s()' function."
327
+ W0298: "A value of short type is returned from `unsigned short %s()' function."
328
+ W0299: "A value of short type is returned from `unsigned int %s()' function."
329
+ W0300: "A value of short type is returned from `unsigned long %s()' function."
330
+ W0301: "A value of int type is returned from `unsigned char %s()' function."
331
+ W0302: "A value of int type is returned from `unsigned short %s()' function."
332
+ W0303: "A value of int type is returned from `unsigned int %s()' function."
333
+ W0304: "A value of int type is returned from `unsigned long %s()' function."
334
+ W0305: "A value of long type is returned from `unsigned char %s()' function."
335
+ W0306: "A value of long type is returned from `unsigned short %s()' function."
336
+ W0307: "A value of long type is returned from `unsigned int %s()' function."
337
+ W0308: "A value of long type is returned from `unsigned long %s()' function."
338
+ W0309: "A value of signed char type is returned from `unsigned long long %s()' function."
339
+ W0310: "A value of short type is returned from `unsigned long long %s()' function."
340
+ W0311: "A value of int type is returned from `unsigned long long %s()' function."
341
+ W0312: "A value of long type is returned from `unsigned long long %s()' function."
342
+ W0313: "A value of long long type is returned from `unsigned char %s()' function."
343
+ W0314: "A value of long long type is returned from `unsigned short %s()' function."
344
+ W0315: "A value of long long type is returned from `unsigned int %s()' function."
345
+ W0316: "A value of long long type is returned from `unsigned long %s()' function."
346
+ W0317: "A value of long long type is returned from `unsigned long long %s()' function."
347
+ W0318: "A value of unsigned char type is returned from `float %s()' function."
348
+ W0319: "A value of unsigned char type is returned from `double %s()' function."
349
+ W0320: "A value of unsigned char type is returned from `long double %s()' function."
350
+ W0321: "A value of signed char type is returned from `float %s()' function."
351
+ W0322: "A value of signed char type is returned from `double %s()' function."
352
+ W0323: "A value of signed char type is returned from `long double %s()' function."
353
+ W0324: "A value of short type is returned from `float %s()' function."
354
+ W0325: "A value of short type is returned from `double %s()' function."
355
+ W0326: "A value of short type is returned from `long double %s()' function."
356
+ W0327: "A value of unsigned short type is returned from `float %s()' function."
357
+ W0328: "A value of unsigned short type is returned from `double %s()' function."
358
+ W0329: "A value of unsigned short type is returned from `long double %s()' function."
359
+ W0330: "A value of int type is returned from `float %s()' function."
360
+ W0331: "A value of int type is returned from `double %s()' function."
361
+ W0332: "A value of int type is returned from `long double %s()' function."
362
+ W0333: "A value of unsigned int type is returned from `float %s()' function."
363
+ W0334: "A value of unsigned int type is returned from `double %s()' function."
364
+ W0335: "A value of unsigned int type is returned from `long double %s()' function."
365
+ W0336: "A value of long type is returned from `float %s()' function."
366
+ W0337: "A value of long type is returned from `double %s()' function."
367
+ W0338: "A value of long type is returned from `long double %s()' function."
368
+ W0339: "A value of unsigned long type is returned from `float %s()' function."
369
+ W0340: "A value of unsigned long type is returned from `double %s()' function."
370
+ W0341: "A value of unsigned long type is returned from `long double %s()' function."
371
+ W0342: "A value of long long type is returned from `float %s()' function."
372
+ W0343: "A value of long long type is returned from `double %s()' function."
373
+ W0344: "A value of long long type is returned from `long double %s()' function."
374
+ W0345: "A value of unsigned long long type is returned from `float %s()' function."
375
+ W0346: "A value of unsigned long long type is returned from `double %s()' function."
376
+ W0347: "A value of unsigned long long type is returned from `long double %s()' function."
377
+ W0348: "A value of float type is returned from `char %s()' function."
378
+ W0349: "A value of float type is returned from `signed char %s()' function."
379
+ W0350: "A value of float type is returned from `unsigned char %s()' function."
380
+ W0351: "A value of float type is returned from `short %s()' function."
381
+ W0352: "A value of float type is returned from `unsigned short %s()' function."
382
+ W0353: "A value of float type is returned from `int %s()' function."
383
+ W0354: "A value of float type is returned from `unsigned int %s()' function."
384
+ W0355: "A value of float type is returned from `long %s()' function."
385
+ W0356: "A value of float type is returned from `unsigned long %s()' function."
386
+ W0357: "A value of double type is returned from `char %s()' function."
387
+ W0358: "A value of double type is returned from `signed char %s()' function."
388
+ W0359: "A value of double type is returned from `unsigned char %s()' function."
389
+ W0360: "A value of double type is returned from `short %s()' function."
390
+ W0361: "A value of double type is returned from `unsigned short %s()' function."
391
+ W0362: "A value of double type is returned from `int %s()' function."
392
+ W0363: "A value of double type is returned from `unsigned int %s()' function."
393
+ W0364: "A value of double type is returned from `long %s()' function."
394
+ W0365: "A value of double type is returned from `unsigned long %s()' function."
395
+ W0366: "A value of long double type is returned from `char %s()' function."
396
+ W0367: "A value of long double type is returned from `signed char %s()' function."
397
+ W0368: "A value of long double type is returned from `unsigned char %s()' function."
398
+ W0369: "A value of long double type is returned from `short %s()' function."
399
+ W0370: "A value of long double type is returned from `unsigned short %s()' function."
400
+ W0371: "A value of long double type is returned from `int %s()' function."
401
+ W0372: "A value of long double type is returned from `unsigned int %s()' function."
402
+ W0373: "A value of long double type is returned from `long %s()' function."
403
+ W0374: "A value of long double type is returned from `unsigned long %s()' function."
404
+ W0375: "A value of float type is returned from `long long %s()' function."
405
+ W0376: "A value of float type is returned from `unsigned long long %s()' function."
406
+ W0377: "A value of double type is returned from `long long %s()' function."
407
+ W0378: "A value of double type is returned from `unsigned long long %s()' function."
408
+ W0379: "A value of long double type is returned from `long long %s()' function."
409
+ W0380: "A value of long double type is returned from `unsigned long long %s()' function."
410
+ W0381: "A value of short type is returned from `signed char %s()' function."
411
+ W0382: "A value of unsigned short type is returned from `unsigned char %s()' function."
412
+ W0383: "A value of int type is returned from `signed char %s()' function."
413
+ W0384: "A value of int type is returned from `short %s()' function."
414
+ W0385: "A value of unsigned int type is returned from `unsigned char %s()' function."
415
+ W0386: "A value of unsigned int type is returned from `unsigned short %s()' function."
416
+ W0387: "A value of long type is returned from `signed char %s()' function."
417
+ W0388: "A value of long type is returned from `short %s()' function."
418
+ W0389: "A value of long type is returned from `int %s()' function."
419
+ W0390: "A value of unsigned long type is returned from `unsigned char %s()' function."
420
+ W0391: "A value of unsigned long type is returned from `unsigned short %s()' function."
421
+ W0392: "A value of unsigned long type is returned from `unsigned int %s()' function."
422
+ W0393: "A value of long long type is returned from `signed char %s()' function."
423
+ W0394: "A value of long long type is returned from `short %s()' function."
424
+ W0395: "A value of long long type is returned from `int %s()' function."
425
+ W0396: "A value of long long type is returned from `long %s()' function."
426
+ W0397: "A value of unsigned long long type is returned from `unsigned char %s()' function."
427
+ W0398: "A value of unsigned long long type is returned from `unsigned short %s()' function."
428
+ W0399: "A value of unsigned long long type is returned from `unsigned int %s()' function."
429
+ W0400: "A value of unsigned long long type is returned from `unsigned long %s()' function."
430
+ W0401: "A value of unsigned char type is returned from `short %s()' function."
431
+ W0402: "A value of unsigned char type is returned from `int %s()' function."
432
+ W0403: "A value of unsigned char type is returned from `long %s()' function."
433
+ W0404: "A value of unsigned short type is returned from `int %s()' function."
434
+ W0405: "A value of unsigned short type is returned from `long %s()' function."
435
+ W0406: "A value of unsigned int type is returned from `long %s()' function."
436
+ W0407: "A value of unsigned char type is returned from `long long %s()' function."
437
+ W0408: "A value of unsigned short type is returned from `long long %s()' function."
438
+ W0409: "A value of unsigned int type is returned from `long long %s()' function."
439
+ W0410: "A value of unsigned long type is returned from `long long %s()' function."
440
+ W0411: "The initialization of enumeration should be only the starting, whole or not at all."
441
+ W0413: "The body of control statement is unenclosed by curly brace `{}' block."
442
+ W0414: "The body of control statement is in a line. It unenclosed by curly brace`{}' block."
443
+ W0421: "Indirect reference is being made to the pointer which its value will be NULL."
444
+ W0422: "Indirect reference is being made to the pointer which its value might be NULL."
445
+ W0423: "Arithmetic operation is being made to the pointer which its value will be NULL."
446
+ W0424: "Arithmetic operation is being made to the pointer which its value might be NULL."
447
+ W0425: "There are several definitions or statements in a line."
448
+ W0431: "This line begins at more left than previous lines of the same indentation level."
449
+ W0432: "Indentation of this line does not comply with the project's indent style."
450
+ W0440: "An indent of this close bracket `}' is not correspond to the open bracket `{'."
451
+ W0441: "The type of integer literal which doesn't have a suffix is not int type."
452
+ W0442: "A function-like macro is defined."
453
+ W0443: "This function-like macro might be replaced with a function."
454
+ W0444: "`#'operator and `##'operator is used in a macro definition."
455
+ W0445: "Multiple `##'operator is used in a macro definition."
456
+ W0446: "The result value of assignment operation is used."
457
+ W0447: "A comma operator is used except 'for' statement."
458
+ W0456: "An object or a function `%s which has external coupling is defined in a header file."
459
+ W0457: "The return value doesn't define explicitly in the function declaration or definition. It defined as 'int' implicitly."
460
+ W0458: "The type doesn't define explicitly in the object declaration or definition. It defined as 'int' implicitly."
461
+ W0459: "A value of variable `%s' doesn't set in this position. This program is danger."
462
+ W0460: "A value of variable `%s' wouldn't set in this position."
463
+ W0461: "A pointer which points the undetermined variable is used for the actual argument of the function. This program is danger."
464
+ W0462: "A pointer which the value will probably not set is used for the actual argument of the function."
465
+ W0463: "UNUSABLE"
466
+ W0464: "UNUSABLE"
467
+ W0477: "There are unpaired `[]',`()',`{}' in macro definition."
468
+ W0478: "This macro defines scraps of unrecognized codes."
469
+ W0479: "This macro definition might be replaced with 'typedef' declaration."
470
+ W0480: "This macro defines keyword of control statement or punctuator."
471
+ W0481: "This macro defines the block around by `{}'."
472
+ W0482: "This macro defines either type specifier."
473
+ W0483: "This macro defines the pair of storage class specifier and type specifier."
474
+ W0488: "A function call`()', array's index operation`[]', or structure/union operation `->' or `.' are used with && or ||. It had better clear the coupling by using `()'."
475
+ W0489: "A monadic operator is used with `&&' or `||'. It had better clear the coupling by using `()'."
476
+ W0490: "A binary operator is used with `&&' or `||'. It had better clear the coupling by using `()'."
477
+ W0491: "The same identifier name `%s' is also used in the declaration of other namespace."
478
+ W0492: "The same identifier name `%s' is also used in the member of structure/union, label, tag or normal identifier."
479
+ W0493: "The value of structure or union is passed as the actual argument of the function."
480
+ W0495: "operator%% is used with other arithmetic operator. It had better clear the coupling by using `()'."
481
+ W0496: "A ternary operator is used several times. It had better clear the coupling by using `()'."
482
+ W0497: "Shift operator, relational operator or equivalent operator is used in several times. It had better clear the coupling by using `()'."
483
+ W0498: "The different operator of same priority in the binary operator '+','-', '*','/' is used. It had better clear the coupling by using `()'."
484
+ W0499: "The different operator of same priority in the binary operator except '+','-', '*','/' is used. It had better clear the coupling by using `()'."
485
+ W0500: "The operator of different priority in the binary operator '+','-','*','/' is used. It had better clear the coupling by using `()'."
486
+ W0501: "A ternary operator is used with binary operator. It had better clear the coupling by using `()'."
487
+ W0502: "A binary operator except '+', '-', '*', '/', '%%' is used with the different priority of binary operator. It had better clear the coupling by using `()'."
488
+ W0508: "There's a side effect at the right operand of `&&' or `||'operator."
489
+ W0511: "C++ style comment of `//' is used."
490
+ W0512: "The result of `++' or `--' operator is used in the statement."
491
+ W0525: "A field named 1bit is declared by signed type."
492
+ W0528: "This macro defines octal constant value."
493
+ W0529: "An octal literal is used."
494
+ W0530: "An octal escape sequence is used in a character constant or a string literal."
495
+ W0532: "'break' statement is used to exits 'case' or 'default' section, but it's not described at the end of 'case' section."
496
+ W0534: "A control variable `%s' is not initialized in this 'for' statement."
497
+ W0535: "A comma operator is used in a 'for' statement."
498
+ W0538: "This 'default' label is not final label in this 'switch' statement."
499
+ W0540: "A function which the blank formal argument list is declared. `void' is omitted."
500
+ W0541: "This function mixed weaves C code with inline assembly code."
501
+ W0542: "There are identifiers in the part of formal argument in a function declaration."
502
+ W0543: "The identifier of formal argument in this function declaration is different from the past declaration of it."
503
+ W0544: "The identifier of formal argument in the function declaration is different from the declaration of function pointer."
504
+ W0546: "There is 'case' or 'default' label of switch statement in a nested block."
505
+ W0549: "A formal argument of macro doesn't enclosed by `()'."
506
+ W0551: "An union type specifier is defined."
507
+ W0552: "An union type object is defined."
508
+ W0553: "A pointer points to the function cast to other function pointer type."
509
+ W0554: "An actual argument `%s' in `#pragma' is unrecognized. This `#pragma' command will be ignored."
510
+ W0555: "This function is called recursive with indirectly."
511
+ W0556: "The function which includes this call is called recursively."
512
+ W0559: "The operand of `!' operator is the expression of bit operation or arithmetic operation."
513
+ W0560: "The operand of `~' operator is boolean type expression."
514
+ W0561: "The meaning of `*p++' is `*(p++)'. It is not `(*p)++'. `*' operator is verbose."
515
+ W0562: "There are verbose `{}' in the initializer."
516
+ W0563: "If it jumps from outside of this block to `%s' label,the local variable will not be initialized."
517
+ W0564: "If this 'goto' statement jumps to `%s' label,local variable will not be initialized."
518
+ W0565: "A volatile integer type cast to volatile pointer type and vice versa."
519
+ W0566: "A volatile integer type cast to function pointer type and vice versa."
520
+ W0567: "A volatile integer type cast to pointer to object and vice versa."
521
+ W0568: "The result of left shift operation against the signed constant expression value is undefined."
522
+ W0569: "The result of left shift operation against the signed expression value is undefined."
523
+ W0570: "The result of left shift operation against the signed expression value might be undefined."
524
+ W0571: "The result of right shift operation against the signed data is a possibility the both logical shift and arithmetic shift by implementation."
525
+ W0572: "The result of bit operation against the signed data is defined by implementation."
526
+ W0573: "A `-' character in scanset in `[]' is implementation defined."
527
+ W0574: "The character except for basic source character is used in the character constant."
528
+ W0575: "The character except for basic source character is used in the string literal."
529
+ W0576: "The character except for basic source character is used in the comment of source file `%s'."
530
+ W0577: "The character except for basic source character is used in preprocessing directive of source file `%s'."
531
+ W0578: "An implicit type conversion from volatile integer type of compound expression to bigger type."
532
+ W0579: "Cast from compound expression of volatile integer type to bigger type."
533
+ W0580: "An address of local static variable is substituted for a pointer which has a wider scope."
534
+ W0581: "The number or type of actual argument is different from the past."
535
+ W0582: "The number or type of actual argument is different from the function prototype declaration at the following."
536
+ W0583: "The number or type of actual argument is different from the function declaration at the following."
537
+ W0584: "The type of %s actual argument is different from the type of formal argument in function definition."
538
+ W0585: "A control variable `%s' doesn't appear increment expression."
539
+ W0586: "A typedef `%s' is declared in more than one place."
540
+ W0589: "An object `%s' is only referenced by function `%s' in the defined translation unit."
541
+ W0591: "A function `%s' is only referenced by the defined translation unit."
542
+ W0593: "An object `%s' is only referenced by the defined translation unit."
543
+ W0597: "`%s' is modified more than once between the side-effects completion point. The evaluation order is undefined."
544
+ W0598: "`%s' might be modified more than once between the side-effects completion point. The evaluation order is undefined."
545
+ W0599: "`%s' is modified and referenced between the side-effects completion point. The evaluation order is undefined."
546
+ W0600: "`%s' is modified and might be referenced between the side-effects completion point. The evaluation order is undefined."
547
+ W0605: "A 'break' statement is used more than once to finish the repetition statement."
548
+ W0606: "An union has a member which type is floating-point."
549
+ W0607: "An integer expression which the value which the value is minus converted to unsigned type."
550
+ W0608: "An integer expression which the value might be minus converted to unsigned type."
551
+ W0609: "The result of this logical operation is always true."
552
+ W0610: "The result of this logical operation is always false."
553
+ W0611: "The value of this 'for' control expression is always true."
554
+ W0612: "The value of this 'if' conditional expression is always true."
555
+ W0613: "The value of this control expression is always false."
556
+ W0614: "The value of this \"do-while\" control expression is always false. The body of repetition statement executed only once."
557
+ W0622: "A function is declared in the block scope."
558
+ W0623: "An external coupling object is declared in the block scope."
559
+ W0624: "There is '#define' or '#undef' in a block."
560
+ W0625: "`%s' is using in the declaration or definition of external coupling. But its 'typedef' doesn't declare in the header file."
561
+ W0626: "A wide character or wide string literal is used."
562
+ W0627: "There is a dead letter (only `;') in the following other code."
563
+ W0628: "A function `%s' is defined, but this is not used in this project."
564
+ W0629: "A static function `%s()' is not used in this translation unit."
565
+ W0632: "If `'' or `/*' use in `#include <%s>', it will unspecify behavior."
566
+ W0633: "If `'' or `/*' use in `#include \"%s\"', it will unspecify behavior."
567
+ W0634: "`\\' is used in `#include' line. `/' is recommended for the path delimiter."
568
+ W0635: "The type doesn't match with %sth conversion specifier and the corresponding actual argument."
569
+ W0636: "An actual argument doesn't exist correspond to %sth conversion specifier."
570
+ W0637: "There is more actual argument than the number of conversion specifier in function call."
571
+ W0638: "This function call requiring at least one actual argument."
572
+ W0639: "%sth conversion specifier doesn't match with corresponding type of actual argument."
573
+ W0640: "The actual argument of scanf function have to pass the object pointer to store the data."
574
+ W0641: "Floating-point number type cast to pointer to object and vice versa."
575
+ W0642: "It is impossible to get the array's address which declared with 'register'."
576
+ W0643: "This string literal constituted by a macro is illegal form unenclosed by `\"'. `#'operator may apply to actual argument which has '\\' at the end."
577
+ W0644: "A value in void statement is going to use. 'void' statement doesn't have a value."
578
+ W0645: "'void' type cannot use in the type of formal argument."
579
+ W0646: "A normal string literal and a wide string literal are contiguous."
580
+ W0649: "A right operand value of shift operand is negative constant value. This result is undefined."
581
+ W0650: "A right operand value of shift operator is much bigger than the bit size represented in left operand type. This result is undefined."
582
+ W0653: "The initial value of an array, structure or union is not enclosed by `{}'."
583
+ W0654: "The initializer of structure or union must the value of the same structure type or union type."
584
+ W0655: "This is bit field statement which the size is undefined."
585
+ W0656: "%sth conversion specifier in scanf, fscanf or sscanf is not supported by ISO C standards."
586
+ W0657: "An invalid flag is used in %sth conversion specifier of `i' or 'd'."
587
+ W0658: "An invalid flag is used in %sth conversion specifier of `o'."
588
+ W0659: "An invalid flag is used in %sth conversion specifier of `u'."
589
+ W0660: "An invalid flag is used in %sth conversion specifier of `x'."
590
+ W0661: "An invalid flag is used in %sth conversion specifier of `X'."
591
+ W0662: "An invalid flag is used in %sth conversion specifier of `f'."
592
+ W0663: "An invalid flag is used in %sth conversion specifier of `e'."
593
+ W0664: "An invalid flag is used in %sth conversion specifier of `E'."
594
+ W0665: "An invalid flag is used in %sth conversion specifier of `g'."
595
+ W0666: "An invalid flag is used in %sth conversion specifier of `G'."
596
+ W0667: "An invalid flag is used in %sth conversion specifier of `c'."
597
+ W0668: "An invalid flag is used in %sth conversion specifier of `%%'."
598
+ W0669: "An invalid flag is used in %sth conversion specifier of `s'."
599
+ W0670: "An invalid flag is used in %sth conversion specifier of `n'."
600
+ W0671: "An invalid flag is used in %sth conversion specifier of `p'."
601
+ W0672: "An invalid flag is used in %sth conversion specifier in scanf, fscanf, sscanf."
602
+ W0673: "%sth conversion specifier in printf, fprintf or sprintf is not supported by ISO C standards."
603
+ W0674: "An invalid flag is used in %sth conversion specifier of `d/i/n'."
604
+ W0675: "An invalid flag is used in %sth conversion specifier of `o'."
605
+ W0676: "An invalid flag is used in %sth conversion specifier of `u'."
606
+ W0677: "An invalid flag is used in %sth conversion specifier of `x/X'."
607
+ W0678: "An invalid flag is used in %sth conversion specifier of `e/E/f/g/G'."
608
+ W0679: "An invalid flag is used in %sth conversion specifier of `s'."
609
+ W0680: "An invalid flag is used in %sth conversion specifier of `p'."
610
+ W0681: "An invalid flag is used in %sth conversion specifier of `%%'."
611
+ W0682: "An invalid flag is used in %sth conversion specifier of `['."
612
+ W0683: "An invalid flag is used in %sth conversion specifier of `c'."
613
+ W0684: "An invalid flag is used in %sth conversion specifier in printf, fprintf, sprintf."
614
+ W0685: "A character preceding the `-' in scanset o `[]' is bigger than a character following the `-'."
615
+ W0686: "The same characters are described in scanset (characters enclosed by `[]')."
616
+ W0687: "#undef is using to delete #defined operator."
617
+ W0688: "There is no line number in 1 to 32767 ranges after '#line'."
618
+ W0689: "#line command syntax doesn't match `#line volatile integer constant value \"string\"'."
619
+ W0690: "This is not line number after '#line' value'."
620
+ W0691: "The result of `##' operator is not valid preprocessing token."
621
+ W0692: "A function-like macro doesn't given an actual argument."
622
+ W0693: "A function-like macro is called by actual argument which its definition is smaller."
623
+ W0694: "'assert' macro is inhibited to call the function named `assert'. This result is undefined."
624
+ W0695: "If #undef the 'assert' macro, and enable to call its name function, the result is undefined."
625
+ W0696: "This macro using in `#if...' is undefined."
626
+ W0697: "There is a path with exits with an implicit `return;' statement in a function `%s' which has a return value."
627
+ W0698: "A `return;' statement is found in a function `%s' which has a return value."
628
+ W0699: "The return value of function `%s()' is unspecified. The return value is implicitly int. There is no expression to set the value to 'return' statement."
629
+ W0700: "The return value of function `%s()' is unspecified. The return value is implicitly int. There is no 'return' statement to return value."
630
+ W0703: "The tag `%s' hides the declaration of same identifier which has wider scope."
631
+ W0704: "This `%s' declaration hides the declaration of same identifier which has wider scope."
632
+ W0705: "An array's index might be out of range."
633
+ W0707: "An array's index is out of range."
634
+ W0708: "A value of control variable `%s' in 'for' statement is changed in the body of repetition."
635
+ W0711: "Right operand of relational operator is a substantive 'boolean' expression."
636
+ W0712: "Left operand of relational operator is a substantive 'boolean' expression."
637
+ W0713: "Both sides of relational operator is substantive 'boolean' expressions."
638
+ W0714: "Both sides of `&' operator is substantive 'boolean' expressions."
639
+ W0715: "Both sides of `|' operator is substantive 'boolean' expressions."
640
+ W0716: "A bit operator or both sides operand of arithmetic operator is a substantive 'boolean' expression."
641
+ W0717: "A bit operator or left side operand of arithmetic operator is a substantive 'boolean' expression."
642
+ W0718: "A bit operator or right side operand of arithmetic operator is a substantive 'boolean' expression."
643
+ W0719: "A right operand of shift operator is a constant value of the above bit field of latency type."
644
+ W0720: "The value with floating-point type doesn't fit in the range of converted type."
645
+ W0721: "This volatile integer type doesn't have enough size to keep pointer value."
646
+ W0722: "A value of signed statement is overflow."
647
+ W0723: "A value of signed statement might be overflow."
648
+ W0724: "An unrecognized preprocessing directive is ignored by conditional include directive."
649
+ W0726: "A function `%s()' which return value is declared as qualified void type , `return statement;' is found."
650
+ W0727: "The value not part of the enumeration type is used."
651
+ W0728: "Other enumeration literal of enumeration type is passed to enumeration literal of formal argument as actual argument."
652
+ W0729: "An enumeration literal of the other enumeration type is substituted for enumeration type object."
653
+ W0730: "A function declared return value to enumeration type returned an enumeration literal of the other enumeration type."
654
+ W0731: "The value of `%s' in 'case' label of 'switch' statement doesn't belong enumeration type of the control statement."
655
+ W0732: "Both operand of `&&'operator is bit operator or arithmetic operator."
656
+ W0733: "Both operand of `||'operator is bit operator or arithmetic operator."
657
+ W0734: "A left operand of logical operator is bit operator or arithmetic operator."
658
+ W0735: "A right operand of logical operator is the expression of bit operator or arithmetic operator."
659
+ W0736: "A static variable `%s' which declared in file scope is read and write in one function only."
660
+ W0737: "The content of `enum %s' is unknown. The enumeration tag is declared without define the content."
661
+ W0738: "An implicit type conversion from positive integer constant expression to smaller unsigned type. The value is rounded."
662
+ W0739: "The result of unsigned subtraction in constant expression is minus."
663
+ W0740: "The result of unsigned addition in constant expression beyond the maximum."
664
+ W0741: "The result of unsigned multiplication in constant expression beyond the maximum."
665
+ W0742: "A negative integer constant expression converted to unsigned type."
666
+ W0743: "The value of integer constant expression beyond the range of might be expressed with converted signed type."
667
+ W0744: "The value of this control expression is constant value to be false. This control statement is not run."
668
+ W0745: "The array's index points out of domain."
669
+ W0747: "An implicit type conversion from short to signed char."
670
+ W0748: "An implicit type conversion from unsigned short to unsigned char."
671
+ W0749: "An implicit type conversion from int to signed char."
672
+ W0750: "An implicit type conversion from int to short."
673
+ W0751: "An implicit type conversion from unsigned int to unsigned char."
674
+ W0752: "An implicit type conversion from unsigned int to unsigned short."
675
+ W0753: "An implicit type conversion from long to signed char."
676
+ W0754: "An implicit type conversion from long to short."
677
+ W0755: "An implicit type conversion from long to int."
678
+ W0756: "An implicit type conversion from unsigned long to unsigned char."
679
+ W0757: "An implicit type conversion from unsigned long to unsigned short."
680
+ W0758: "An implicit type conversion from unsigned long to unsigned int."
681
+ W0759: "An implicit type conversion from long long to signed char."
682
+ W0760: "An implicit type conversion from long long to short."
683
+ W0761: "An implicit type conversion from long long to int."
684
+ W0762: "An implicit type conversion from long long to long."
685
+ W0763: "An implicit type conversion from unsigned long long to unsigned char."
686
+ W0764: "An implicit type conversion from unsigned long long to unsigned short."
687
+ W0765: "An implicit type conversion from unsigned long long to unsigned int."
688
+ W0766: "An implicit type conversion from unsigned long long to unsigned long."
689
+ W0767: "An implicit type conversion from double to float."
690
+ W0768: "An implicit type conversion from long double to float."
691
+ W0769: "An implicit type conversion from long double to double."
692
+ W0770: "A declaration of identifier `%s' which has external coupling exists more than one."
693
+ W0771: "A global identifier `%s' is declared in more than one file."
694
+ W0774: "A value of double type is returned from `float %s()'function."
695
+ W0775: "A value of long double type is returned from `float %s()' function."
696
+ W0776: "A value of long double type is returned from `double %s()'function."
697
+ W0777: "An implicit type conversion from compound expression of float to double."
698
+ W0778: "An implicit type conversion from compound expression of float to long double."
699
+ W0779: "An implicit type conversion from compound expression of to long double."
700
+ W0780: "Unsigned left shift operator `<<' in constant expression truncate non-zero high-order bit."
701
+ W0781: "This 'switch' statement have only one path. It's verbose."
702
+ W0783: "Cast is being made including the pointer point to incomplete type. This program is not portable."
703
+ W0784: "The nonstandard escape sequence is used."
704
+ W0785: "This declaration of `%s' is different from a former declaration."
705
+ W0786: "A bit field which having the type of except 'int', 'signed int' or 'unsigned int' doesn't support in ISO C standards. "
706
+ W0787: "A type of `%s' is different from the past declaration in the different scope."
707
+ W0788: "A type of `%s' is different from the past declaration in the same scope."
708
+ W0789: "A type of `%s' is different from the past declaration in the wider scope."
709
+ W0790: "An global object or a function `%s' is declared in more than one file."
710
+ W0791: "An global object or a function `%s' is declared in more than one file."
711
+ W0792: "A floating point type object cast to function pointer and vice versa."
712
+ W0793: "A function pointer cast to pointer to point an object and vice versa."
713
+ W0794: "Left shift operation to signed operand."
714
+ W0795: "The number of an actual argument in function call is smaller than the number of a formal argument in the function prototype declaration."
715
+ W0796: "The number of an actual argument in function call is bigger than the number of a formal argument in the function prototype declaration."
716
+ W0797: "The number of an actual argument in function call is different from the number of a formal argument in the function declaration."
717
+ W0798: "Must not use the value with incomplete union object."
718
+ W0799: "Must not use the value with incomplete structure object."
719
+ W0800: "`%s' is incomplete type which doesn't have a linkage.This is undefined."
720
+ W0801: "This structure or union doesn't have a named member."
721
+ W0802: "A form of after `#include' preprocessing directive is not <file name> nor \"file name\"."
722
+ W0803: "A preprocessing directive is described in actual argument of function-like macro."
723
+ W0804: "The 'defined' syntax is not `defined (identifier)' nor `defined identifier'."
724
+ W0805: "An identifier to be actual argument doesn't find in `defined'."
725
+ W0806: "It is trying to define a macro named `defined'."
726
+ W0807: "It is trying to delete pre-defined macro `%s'."
727
+ W0808: "It is trying to redefine pre-defined macro `%s'."
728
+ W0809: "An identifier `%s' is reserved by the library."
729
+ W0810: "`{}' is required to clarify this structure of `if-if-else' statement."
730
+ W0811: "The `defined' token which the expanded result of this macro doesn't allowed."
731
+ W0827: "An initial value of nested structure's element doesn't enclosed in curly brace `{ }'."
732
+ W0828: "An initial value of nested array's element doesn't enclosed in curly brace `{ }'."
733
+ W0830: "There is comma `,' at the end of the enumerator list."
734
+ W0831: "This is language extension for inline assembly. It will be ignored between #asm and #endasm."
735
+ W0832: "An inline assembly syntax is using. This is the language extension. This code will be ignored."
736
+ W0833: "A suffix 'LL' is using."
737
+ W0834: "A long long type is using."
738
+ W0835: "A macro which receives variable argument is defined."
739
+ W0947: "A string literal is used directly."
740
+ W0948: "A character constant `%s' is used directly."
741
+ W0949: "A value `%s' is used directly for size definition of bit field."
742
+ W0950: "A value `%s' is used directly for size definition of the array."
743
+ W1026: "%sth actual argument is not object type."
744
+ W1027: "A base type of array is function type. This is meaningless."
745
+ W1028: "A base type of array is an array with unknown size. Incomplete type of array will not build."
746
+ W1029: "A base type of array is an obscure structure or union. Incomplete type of array will not build."
747
+ W1030: "A label `%s' is used more than two times in this function."
748
+ W1031: "An Object `%s' is declared both external coupling and internal coupling. This action is undefined."
749
+ W1032: "A tentative definition of variable '%s' which has internal linkage must not incomplete type."
750
+ W1033: "A 'volatile' or 'const' qualifier is used for the type of function return value. This action is undefined."
751
+ W1034: "It is declared at function `%s()' with static storage class specifier in block scope. This usage is meaningless."
752
+ W1035: "`%s' declared typedef. It cannot be redeclared inside an inner scope without using explicit type."
753
+ W1036: "`%s' declared typedef. It cannot be redeclared as a member of structure or union without using explicit type."
754
+ W1037: "`%s' which has external coupling is declared more than one, this is incompatible."
755
+ W1039: "`ll' is used in conversion specifier."
756
+ W1040: "An unrecognizable string is described after preprocessing directive."
757
+ W1041: "`#%s' is not official preprocessing directive of ISO C standards."
758
+ W1042: "'sizeof' operator is using in preprocessing directive. This is the language extension."
759
+ W1043: "`@ address' is not supported ISO C standards. It will be considered as language extension."
760
+ W1044: "An expression which includes the statement is not supported ISO C standards. It will be considered as language extension."
761
+ W1045: "This `@ word' syntax will be ignored."
762
+ W1046: "A space character is ignored between `\\' and line feed."
763
+ W1047: "The struct, union or array's initializer is not literal."
764
+ W1048: "The multi byte string literal is an implementation defined value."
765
+ W1049: "The result of conversion to signed integer type in integer expression might not be expressed by a signed type."
766
+ W1050: "The result of conversion to signed integer type in integer expression is not express by a signed type."
767
+ W1051: "The result of arithmetic operation in unsigned type is going around 0 by overflow."
768
+ W1052: "The result of arithmetic operation in unsigned type can be going around by overflow."
769
+ W1053: "A numeric constants is passed to an actual argument which formal argument is enumeration type."
770
+ W1054: "A non enumeration type expression is substituted for the enumeration type."
771
+ W1055: "A non enumeration type expression is returned from the function which return value is enumeration type."
772
+ W1056: "An object of actual argument is different enumeration type which formal argument is enumeration type."
773
+ W1057: "An enumeration value is substituted for different enumeration type object."
774
+ W1058: "A different enumeration type of value is returned from a function which return value is enumeration type."
775
+ W1059: "An enumeration value is passed to actual argument which formal argument is not enumeration type."
776
+ W1060: "An enumeration value is returned from a function which return value is not enumeration type ."
777
+ W1061: "Non constant expression of non enumeration type is passed to actual argument which formal argument is enumeration type."
778
+ W1062: "Non constant expression is substituted for the enumeration type object."
779
+ W1063: "The return value returned from enumeration type function to non constant expression."
780
+ W1064: "A integer constant is used in switch statement where case label is enumeration type."
781
+ W1065: "A value of different enumeration type is used in switch statement where case label is an enumeration type."
782
+ W9001: "This statement doesn't reach the control."
783
+ W9002: "There is no line feed character at the end of file."
784
+ C0001: "A warning is detected in external identifier name `%s'."