aboutsummaryrefslogtreecommitdiff
path: root/Doc/Manual
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2012-09-14 22:25:35 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2012-09-14 22:25:35 +0000
commitbc43673a86e8f8fa63dcc822e3357dca6518e01d (patch)
tree19b1c1b14b09aea504ff20702573fab259762a37 /Doc/Manual
parent323f841d933c5a11b592767fbadf76a0dcb2b3c2 (diff)
downloadswig-bc43673a86e8f8fa63dcc822e3357dca6518e01d.tar.gz
Add new warning if an empty template declaration is used on a base class, minor docs improvement for empty template declarations.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@13840 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Doc/Manual')
-rw-r--r--Doc/Manual/SWIGPlus.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/Manual/SWIGPlus.html b/Doc/Manual/SWIGPlus.html
index b4baca6ae..9ecf0aa5a 100644
--- a/Doc/Manual/SWIGPlus.html
+++ b/Doc/Manual/SWIGPlus.html
@@ -3121,8 +3121,8 @@ nothing is known about <tt>List&lt;int&gt;</tt>, you will get a warning message
<div class="shell">
<pre>
-example.h:42. Nothing known about class 'List&lt;int &gt;' (ignored).
-example.h:42. Maybe you forgot to instantiate 'List&lt;int &gt;' using %template.
+example.h:42: Warning 401. Nothing known about class 'List&lt;int &gt;'. Ignored.
+example.h:42: Warning 401. Maybe you forgot to instantiate 'List&lt;int &gt;' using %template.
</pre>
</div>
@@ -3163,7 +3163,7 @@ Don't worry--if you get the order wrong, SWIG should generate a warning message.
Occasionally, you may need to tell SWIG about base classes that are defined by templates,
but which aren't supposed to be wrapped. Since SWIG is not able to automatically
instantiate templates for this purpose, you must do it manually. To do this, simply
-use <tt>%template</tt> with no name. For example:
+use the empty template instantiation, that is, <tt>%template</tt> with no name. For example:
</p>
<div class="code">