PageRenderTime 50ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/Doc/Manual/Warnings.html

#
HTML | 595 lines | 492 code | 101 blank | 2 comment | 0 complexity | 06e34ba081b97d0c429eee1772e3b085 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html>
  3. <head>
  4. <title>Warning Messages</title>
  5. <link rel="stylesheet" type="text/css" href="style.css">
  6. </head>
  7. <body bgcolor="#ffffff">
  8. <H1><a name="Warnings"></a>14 Warning Messages</H1>
  9. <!-- INDEX -->
  10. <div class="sectiontoc">
  11. <ul>
  12. <li><a href="#Warnings_nn2">Introduction</a>
  13. <li><a href="#Warnings_suppression">Warning message suppression</a>
  14. <li><a href="#Warnings_nn4">Enabling extra warnings</a>
  15. <li><a href="#Warnings_nn5">Issuing a warning message</a>
  16. <li><a href="#Warnings_symbolic_symbols">Symbolic symbols</a>
  17. <li><a href="#Warnings_nn6">Commentary</a>
  18. <li><a href="#Warnings_nn7">Warnings as errors</a>
  19. <li><a href="#Warnings_nn8">Message output format</a>
  20. <li><a href="#Warnings_nn9">Warning number reference</a>
  21. <ul>
  22. <li><a href="#Warnings_nn10">Deprecated features (100-199)</a>
  23. <li><a href="#Warnings_nn11">Preprocessor (200-299)</a>
  24. <li><a href="#Warnings_nn12">C/C++ Parser (300-399)</a>
  25. <li><a href="#Warnings_nn13">Types and typemaps (400-499) </a>
  26. <li><a href="#Warnings_nn14">Code generation (500-599)</a>
  27. <li><a href="#Warnings_nn15">Language module specific (700-899) </a>
  28. <li><a href="#Warnings_nn16">User defined (900-999)</a>
  29. </ul>
  30. <li><a href="#Warnings_nn17">History</a>
  31. </ul>
  32. </div>
  33. <!-- INDEX -->
  34. <H2><a name="Warnings_nn2"></a>14.1 Introduction</H2>
  35. <p>
  36. During compilation, SWIG may generate a variety of warning messages. For example:
  37. </p>
  38. <div class="shell">
  39. <pre>
  40. example.i:16: Warning 501: Overloaded declaration ignored. bar(double)
  41. example.i:15: Warning 501: Previous declaration is bar(int)
  42. </pre>
  43. </div>
  44. <p>
  45. Typically, warning messages indicate non-fatal problems with the input
  46. where the generated wrapper code will probably compile, but it may not
  47. work like you expect.
  48. </p>
  49. <H2><a name="Warnings_suppression"></a>14.2 Warning message suppression</H2>
  50. <p>
  51. All warning messages have a numeric code that is shown in the warning message itself.
  52. To suppress the printing of a warning message, a number of techniques can be used.
  53. First, you can run SWIG with the <tt>-w</tt> command line option. For example:
  54. </p>
  55. <div class="shell">
  56. <pre>
  57. % swig -python -w501 example.i
  58. % swig -python -w501,505,401 example.i
  59. </pre>
  60. </div>
  61. <p>
  62. Alternatively, warnings can be suppressed by inserting a special preprocessor pragma
  63. into the input file:
  64. </p>
  65. <div class="code">
  66. <pre>
  67. %module example
  68. #pragma SWIG nowarn=501
  69. #pragma SWIG nowarn=501,505,401
  70. </pre>
  71. </div>
  72. <p>
  73. Finally, code-generation warnings can be disabled on a declaration by declaration basis using
  74. the <tt>%warnfilter</tt> directive. For example:
  75. </p>
  76. <div class="code">
  77. <pre>
  78. %module example
  79. %warnfilter(501) foo;
  80. ...
  81. int foo(int);
  82. int foo(double); // Silently ignored.
  83. </pre>
  84. </div>
  85. <p>
  86. The <tt>%warnfilter</tt> directive has the same semantics as other declaration modifiers like
  87. <tt>%rename</tt>, <tt>%ignore</tt> and <tt>%feature</tt>, see the
  88. <a href="Customization.html#Customization_features">%feature directive</a> section. For example, if you wanted to
  89. suppress a warning for a method in a class hierarchy, you could do this:
  90. </p>
  91. <div class="code">
  92. <pre>
  93. %warnfilter(501) Object::foo;
  94. class Object {
  95. public:
  96. int foo(int);
  97. int foo(double); // Silently ignored
  98. ...
  99. };
  100. class Derived : public Object {
  101. public:
  102. int foo(int);
  103. int foo(double); // Silently ignored
  104. ...
  105. };
  106. </pre>
  107. </div>
  108. <p>
  109. Warnings can be suppressed for an entire class by supplying a class name. For example:
  110. </p>
  111. <div class="code">
  112. <pre>
  113. %warnfilter(501) Object;
  114. class Object {
  115. public:
  116. ... // All 501 warnings ignored in class
  117. };
  118. </pre>
  119. </div>
  120. <p>
  121. There is no option to suppress all SWIG warning messages. The warning messages are there
  122. for a reason---to tell you that something may be <em>broken</em> in
  123. your interface. Ignore the warning messages at your own peril.
  124. </p>
  125. <H2><a name="Warnings_nn4"></a>14.3 Enabling extra warnings</H2>
  126. <p>
  127. Some warning messages are disabled by default and are generated only
  128. to provide additional diagnostics. These warnings can be turned on using the
  129. <tt>-Wextra</tt> option. For example:
  130. </p>
  131. <div class="shell">
  132. <pre>
  133. % swig -Wextra -python example.i
  134. </pre>
  135. </div>
  136. <p>
  137. To selectively turn on extra warning messages, you can use the directives and options in the
  138. previous section--simply add a "+" to all warning numbers. For example:
  139. </p>
  140. <div class="shell">
  141. <pre>
  142. % swig -w+309,+452 example.i
  143. </pre>
  144. </div>
  145. <p>
  146. or in your interface file use either
  147. </p>
  148. <div class="code">
  149. <pre>
  150. #pragma SWIG nowarn=+309,+452
  151. </pre>
  152. </div>
  153. <p>
  154. or
  155. </p>
  156. <div class="code">
  157. <pre>
  158. %warnfilter(+309,+452) foo;
  159. </pre>
  160. </div>
  161. <p>
  162. Note: selective enabling of warnings with <tt>%warnfilter</tt> overrides any global settings you might have
  163. made using <tt>-w</tt> or <tt>#pragma</tt>.
  164. </p>
  165. <p>
  166. You can of course also enable all warnings and suppress a select few, for example:
  167. </p>
  168. <div class="shell">
  169. <pre>
  170. % swig -Wextra -w309,452 example.i
  171. </pre>
  172. </div>
  173. <p>
  174. The warnings on the right take precedence over the warnings on the left, so in the above example <tt>-Wextra</tt> adds numerous warnings including 452, but then <tt>-w309,452</tt> overrides this and so 452 is suppressesed.
  175. </p>
  176. <p>
  177. If you would like all warnings to appear, regardless of the warning filters used, then use the <tt>-Wall</tt> option.
  178. The <tt>-Wall</tt> option also turns on the extra warnings that <tt>-Wextra</tt> adds, however, it is subtely different.
  179. When <tt>-Wall</tt> is used, it also disables all other warning filters,
  180. that is, any warnings suppressed or added in <tt>%warnfilter</tt>, <tt>#pragma SWIG nowarn</tt>
  181. or the <tt>-w</tt> option.
  182. </p>
  183. <H2><a name="Warnings_nn5"></a>14.4 Issuing a warning message</H2>
  184. <p>
  185. Warning messages can be issued from an interface file using a number of directives. The
  186. <tt>%warn</tt> directive is the most simple:
  187. </p>
  188. <div class="code">
  189. <pre>
  190. %warn "900:This is your last warning!"
  191. </pre>
  192. </div>
  193. <p>
  194. All warning messages are optionally prefixed by the warning number to use. If you are generating
  195. your own warnings, make sure you don't use numbers defined in the table at the end of this section.
  196. </p>
  197. <p>
  198. The <tt>%ignorewarn</tt> directive is the same as <tt>%ignore</tt> except that it issues a
  199. warning message whenever a matching declaration is found. For example:
  200. </p>
  201. <div class="code">
  202. <pre>
  203. %ignorewarn("362:operator= ignored") operator=;
  204. </pre>
  205. </div>
  206. <p>
  207. Warning messages can be associated with typemaps using the
  208. <tt>warning</tt> attribute of a typemap declaration. For example:
  209. </p>
  210. <div class="code">
  211. <pre>
  212. %typemap(in, warning="901:You are really going to regret this usage of $1_type $1_name") blah * {
  213. ...
  214. }
  215. </pre>
  216. </div>
  217. <p>
  218. In this case, the warning message will be printed whenever the typemap is actually used and the <a href="Typemaps.html#Typemaps_special_variables">special variables</a> will be expanded as appropriate, for example:
  219. </p>
  220. <div class="shell">
  221. <pre>
  222. example.i:23: Warning 901: You are really going to regret this usage of blah * self
  223. example.i:24: Warning 901: You are really going to regret this usage of blah * stuff
  224. </pre>
  225. </div>
  226. <H2><a name="Warnings_symbolic_symbols"></a>14.5 Symbolic symbols</H2>
  227. <p>
  228. The <tt>swigwarn.swg</tt> file that is installed with SWIG contains symbol constants that could also be
  229. used in <tt>%warnfilter</tt> and <tt>#pragma SWIG nowarn</tt>.
  230. For example this file contains the following line:
  231. </p>
  232. <div class="code">
  233. <pre>
  234. %define SWIGWARN_TYPE_UNDEFINED_CLASS 401 %enddef
  235. </pre>
  236. </div>
  237. <p>
  238. so <tt>SWIGWARN_TYPE_UNDEFINED_CLASS</tt> could be used instead of 401, for example:
  239. </p>
  240. <div class="code">
  241. <pre>
  242. #pragma SWIG nowarn=SWIGWARN_TYPE_UNDEFINED_CLASS
  243. </pre>
  244. </div>
  245. <p>
  246. or
  247. </p>
  248. <div class="code">
  249. <pre>
  250. %warnfilter(SWIGWARN_TYPE_UNDEFINED_CLASS) Foo;
  251. </pre>
  252. </div>
  253. <H2><a name="Warnings_nn6"></a>14.6 Commentary</H2>
  254. <p>
  255. The ability to suppress warning messages is really only provided for
  256. advanced users and is not recommended in normal use. You are advised
  257. to modify your interface to fix the problems highlighted by the warnings
  258. wherever possible instead of suppressing warnings.
  259. </p>
  260. <p>
  261. Certain types of SWIG problems are errors. These usually arise due to
  262. parsing errors (bad syntax) or semantic problems for which there is
  263. no obvious recovery. There is no mechanism for suppressing error
  264. messages.
  265. </p>
  266. <H2><a name="Warnings_nn7"></a>14.7 Warnings as errors</H2>
  267. <p>
  268. Warnings can be handled as errors by using the <tt>-Werror</tt> command line
  269. option. This will cause SWIG to exit with a non successful exit code if a
  270. warning is encountered.
  271. </p>
  272. <H2><a name="Warnings_nn8"></a>14.8 Message output format</H2>
  273. <p>
  274. The output format for both warnings and errors can be selected for
  275. integration with your favourite IDE/editor. Editors and IDEs can usually parse
  276. error messages and if in the appropriate format will easily take you
  277. directly to the source of the error. The standard format is used by
  278. default except on Windows where the Microsoft format is used by default.
  279. These can be overridden using command line options, for example:
  280. </p>
  281. <div class="shell"><pre>
  282. $ swig -python -Fstandard example.i
  283. example.i:4: Syntax error in input.
  284. $ swig -python -Fmicrosoft example.i
  285. example.i(4) : Syntax error in input.
  286. </pre></div>
  287. <H2><a name="Warnings_nn9"></a>14.9 Warning number reference</H2>
  288. <H3><a name="Warnings_nn10"></a>14.9.1 Deprecated features (100-199)</H3>
  289. <ul>
  290. <li>101. Deprecated <tt>%extern</tt> directive.
  291. <li>102. Deprecated <tt>%val</tt> directive.
  292. <li>103. Deprecated <tt>%out</tt> directive.
  293. <li>104. Deprecated <tt>%disabledoc</tt> directive.
  294. <li>105. Deprecated <tt>%enabledoc</tt> directive.
  295. <li>106. Deprecated <tt>%doconly</tt> directive.
  296. <li>107. Deprecated <tt>%style</tt> directive.
  297. <li>108. Deprecated <tt>%localstyle</tt> directive.
  298. <li>109. Deprecated <tt>%title</tt> directive.
  299. <li>110. Deprecated <tt>%section</tt> directive.
  300. <li>111. Deprecated <tt>%subsection</tt> directive.
  301. <li>112. Deprecated <tt>%subsubsection</tt> directive.
  302. <li>113. Deprecated <tt>%addmethods</tt> directive.
  303. <li>114. Deprecated <tt>%readonly</tt> directive.
  304. <li>115. Deprecated <tt>%readwrite</tt> directive.
  305. <li>116. Deprecated <tt>%except</tt> directive.
  306. <li>117. Deprecated <tt>%new</tt> directive.
  307. <li>118. Deprecated <tt>%typemap(except)</tt>.
  308. <li>119. Deprecated <tt>%typemap(ignore)</tt>.
  309. <li>120. Deprecated command line option (-runtime, -noruntime).
  310. <li>121. Deprecated <tt>%name</tt> directive.
  311. </ul>
  312. <H3><a name="Warnings_nn11"></a>14.9.2 Preprocessor (200-299)</H3>
  313. <ul>
  314. <li>201. Unable to find <em>filename</em>.
  315. <li>202. Could not evaluate expression <em>expr</em>.
  316. <li>203. Both includeall and importall are defined: using includeall.
  317. <li>204. CPP #warning, "<em>warning</em>".
  318. <li>205. CPP #error, "<em>error</em>".
  319. <li>206. Unexpected tokens after #<em>directive</em> directive.
  320. </ul>
  321. <H3><a name="Warnings_nn12"></a>14.9.3 C/C++ Parser (300-399)</H3>
  322. <ul>
  323. <li>301. <tt>class</tt> keyword used, but not in C++ mode.
  324. <li>302. Identifier '<em>name</em>' redefined (ignored).
  325. <li>303. <tt>%extend</tt> defined for an undeclared class '<em>name</em>'.
  326. <li>304. Unsupported constant value (ignored).
  327. <li>305. Bad constant value (ignored).
  328. <li>306. '<em>identifier</em>' is private in this context.
  329. <li>307. Can't set default argument value (ignored)
  330. <li>308. Namespace alias '<em>name</em>' not allowed here. Assuming '<em>name</em>'
  331. <li>309. [private | protected] inheritance ignored.
  332. <li>310. Template '<em>name</em>' was already wrapped as '<em>name</em>' (ignored)
  333. <li>312. Unnamed nested class not currently supported (ignored).
  334. <li>313. Unrecognized extern type "<em>name</em>" (ignored).
  335. <li>314. '<em>identifier</em>' is a <em>lang</em> keyword.
  336. <li>315. Nothing known about '<em>identifier</em>'.
  337. <li>316. Repeated %module directive.
  338. <li>317. Specialization of non-template '<em>name</em>'.
  339. <li>318. Instantiation of template '<em>name</em>' is ambiguous, instantiation <em>templ</em> used, instantiation <em>templ</em> ignored.
  340. <li>319. No access specifier given for base class <em>name</em> (ignored).
  341. <li>320. Explicit template instantiation ignored.
  342. <li>321. <em>identifier</em> conflicts with a built-in name.
  343. <li>322. Redundant redeclaration of '<em>name</em>'.
  344. <li>323. Recursive scope inheritance of '<em>name</em>'.
  345. <li>324. Named nested template instantiations not supported. Processing as if no name was given to %template().
  346. <li>325. Nested class not currently supported (<em>name</em> ignored).
  347. <li>350. operator new ignored.
  348. <li>351. operator delete ignored.
  349. <li>352. operator+ ignored.
  350. <li>353. operator- ignored.
  351. <li>354. operator* ignored.
  352. <li>355. operator/ ignored.
  353. <li>356. operator% ignored.
  354. <li>357. operator^ ignored.
  355. <li>358. operator&amp; ignored.
  356. <li>359. operator| ignored.
  357. <li>360. operator~ ignored.
  358. <li>361. operator! ignored.
  359. <li>362. operator= ignored.
  360. <li>363. operator&lt; ignored.
  361. <li>364. operator&gt; ignored.
  362. <li>365. operator+= ignored.
  363. <li>366. operator-= ignored.
  364. <li>367. operator*= ignored.
  365. <li>368. operator/= ignored.
  366. <li>369. operator%= ignored.
  367. <li>370. operator^= ignored.
  368. <li>371. operator&amp;= ignored.
  369. <li>372. operator|= ignored.
  370. <li>373. operator&lt;&lt; ignored.
  371. <li>374. operator&gt;&gt;ignored.
  372. <li>375. operator&lt;&lt;= ignored.
  373. <li>376. operator&gt;&gt;= ignored.
  374. <li>377. operator== ignored.
  375. <li>378. operator!= ignored.
  376. <li>379. operator&lt;= ignored.
  377. <li>380. operator&gt;= ignored.
  378. <li>381. operator&amp;&amp; ignored.
  379. <li>382. operator|| ignored.
  380. <li>383. operator++ ignored.
  381. <li>384. operator-- ignored.
  382. <li>385. operator, ignored.
  383. <li>386. operator-&lt;* ignored.
  384. <li>387. operator-&lt; ignored.
  385. <li>388. operator() ignored.
  386. <li>389. operator[] ignored.
  387. <li>390. operator+ ignored (unary).
  388. <li>391. operator- ignored (unary).
  389. <li>392. operator* ignored (unary).
  390. <li>393. operator&amp; ignored (unary).
  391. <li>394. operator new[] ignored.
  392. <li>395. operator delete[] ignored.
  393. </ul>
  394. <H3><a name="Warnings_nn13"></a>14.9.4 Types and typemaps (400-499) </H3>
  395. <ul>
  396. <li>401. Nothing known about class 'name'. Ignored.
  397. <li>402. Base class 'name' is incomplete.
  398. <li>403. Class 'name' might be abstract.
  399. <li>450. Deprecated typemap feature ($source/$target).
  400. <li>451. Setting const char * variable may leak memory.
  401. <li>452. Reserved
  402. <li>453. Can't apply (pattern). No typemaps are defined.
  403. <li>460. Unable to use type <em>type</em> as a function argument.
  404. <li>461. Unable to use return type <em>type</em> in function <em>name</em>.
  405. <li>462. Unable to set variable of type <em>type</em>.
  406. <li>463. Unable to read variable of type <em>type</em>.
  407. <li>464. Unsupported constant value.
  408. <li>465. Unable to handle type <em>type</em>.
  409. <li>466. Unsupported variable type <em>type</em>.
  410. <li>467. Overloaded <em>declaration</em> not supported (no type checking rule for '<em>type</em>')
  411. <li>468. No 'throw' typemap defined for exception type <em>type</em>
  412. <li>469. No or improper directorin typemap defined for <em>type</em>
  413. <li>470. Thread/reentrant unsafe wrapping, consider returning by value instead.
  414. <li>471. Unable to use return type <em>type</em> in director method
  415. <li>474. Method <em>method</em> usage of the optimal attribute ignored in the out typemap as the following cannot be used to generate optimal code: <em>code</em>
  416. <li>475. Multiple calls to <em>method</em> might be generated due to optimal attribute usage in the out typemap.
  417. </ul>
  418. <H3><a name="Warnings_nn14"></a>14.9.5 Code generation (500-599)</H3>
  419. <ul>
  420. <li>501. Overloaded declaration ignored. <em>decl</em>. Previous declaration is <em>decl</em>.
  421. <li>502. Overloaded constructor ignored. <em>decl</em>. Previous declaration is <em>decl</em>.
  422. <li>503. Can't wrap '<em>identifier</em>' unless renamed to a valid identifier.
  423. <li>504. Function <em>name</em> must have a return type. Ignored.
  424. <li>505. Variable length arguments discarded.
  425. <li>506. Can't wrap varargs with keyword arguments enabled.
  426. <li>507. Adding native function <em>name</em> not supported (ignored).
  427. <li>508. Declaration of '<em>name</em>' shadows declaration accessible via operator-&gt;(), previous declaration of'<em>declaration</em>'.
  428. <li>509. Overloaded method <em>declaration</em> effectively ignored, as it is shadowed by <em>declaration</em>.
  429. <li>510. Friend function '<em>name</em>' ignored.
  430. <li>511. Can't use keyword arguments with overloaded functions.
  431. <li>512. Overloaded method <em>declaration</em> ignored, using non-const method <em>declaration</em> instead.
  432. <li>513. Can't generate wrappers for unnamed struct/class.
  433. <li>514.
  434. <li>515.
  435. <li>516. Overloaded method <em>declaration</em> ignored, using <em>declaration</em> instead.
  436. <li>517.
  437. <li>518. Portability warning: File <em>file1</em> will be overwritten by <em>file2</em> on case insensitive filesystems such as Windows' FAT32 and NTFS unless the class/module name is renamed.
  438. <li>519. %template() contains no name. Template method ignored: <em>declaration</em>
  439. <li>520. <em>Base/Derived</em> class '<em>classname1</em>' of '<em>classname2</em>' is not similarly marked as a smart pointer.
  440. <li>521. Illegal destructor name <em>name</em>. Ignored.
  441. </ul>
  442. <H3><a name="Warnings_nn15"></a>14.9.6 Language module specific (700-899) </H3>
  443. <ul>
  444. <li>801. Wrong name (corrected to '<em>name</em>'). (Ruby).
  445. </ul>
  446. <ul>
  447. <li>810. No jni typemap defined for <em>type</em> (Java).
  448. <li>811. No jtype typemap defined for <em>type</em> (Java).
  449. <li>812. No jstype typemap defined for <em>type</em> (Java).
  450. <li>813. Warning for <em>classname</em>: Base <em>baseclass</em> ignored. Multiple inheritance is not supported in Java. (Java).
  451. <li>814.
  452. <li>815. No javafinalize typemap defined for <em>type</em> (Java).
  453. <li>816. No javabody typemap defined for <em>type</em> (Java).
  454. <li>817. No javaout typemap defined for <em>type</em> (Java).
  455. <li>818. No javain typemap defined for <em>type</em> (Java).
  456. <li>819. No javadirectorin typemap defined for <em>type</em> (Java).
  457. <li>820. No javadirectorout typemap defined for <em>type</em> (Java).
  458. <li>821.
  459. <li>822. Covariant return types not supported in Java. Proxy method will return <em>basetype</em> (Java).
  460. <li>823. No javaconstruct typemap defined for <em>type</em> (Java).
  461. <li>824. Missing JNI descriptor in directorin typemap defined for <em>type</em> (Java).
  462. </ul>
  463. <ul>
  464. <li>830. No ctype typemap defined for <em>type</em> (C#).
  465. <li>831. No cstype typemap defined for <em>type</em> (C#).
  466. <li>832. No cswtype typemap defined for <em>type</em> (C#).
  467. <li>833. Warning for <em>classname</em>: Base <em>baseclass</em> ignored. Multiple inheritance is not supported in C#. (C#).
  468. <li>834.
  469. <li>835. No csfinalize typemap defined for <em>type</em> (C#).
  470. <li>836. No csbody typemap defined for <em>type</em> (C#).
  471. <li>837. No csout typemap defined for <em>type</em> (C#).
  472. <li>838. No csin typemap defined for <em>type</em> (C#).
  473. <li>839.
  474. <li>840.
  475. <li>841.
  476. <li>842. Covariant return types not supported in C#. Proxy method will return <em>basetype</em> (C#).
  477. <li>843. No csconstruct typemap defined for <em>type</em> (C#).
  478. <li>844. C# exception may not be thrown - no $excode or excode attribute in <em>typemap</em> typemap. (C#).
  479. <li>845. Unmanaged code contains a call to a SWIG_CSharpSetPendingException method and C# code does not handle pending exceptions via the canthrow attribute. (C#).
  480. </ul>
  481. <ul>
  482. <li>870. Warning for <em>classname</em>: Base <em>baseclass</em> ignored. Multiple inheritance is not supported in PHP.
  483. <li>871. Unrecognized pragma <em>pragma</em>. (Php).
  484. </ul>
  485. <H3><a name="Warnings_nn16"></a>14.9.7 User defined (900-999)</H3>
  486. <p>
  487. These numbers can be used by your own application.
  488. </p>
  489. <H2><a name="Warnings_nn17"></a>14.10 History</H2>
  490. <p>
  491. The ability to control warning messages was first added to SWIG-1.3.12.
  492. </p>
  493. </body>
  494. </html>