summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2023-05-17 19:25:05 +0100
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2023-05-17 20:59:17 +0100
commitec1a29c72e828b3b6b2a0e7f85e0a91b9f7577ef (patch)
tree7aa89fb72b750b3a8f2a0ee31c0d2c1d422b9bd0 /Source
parent086cb543f9fd11cf1e146f7b761fcdd80574f4b7 (diff)
downloadswig-ec1a29c72e828b3b6b2a0e7f85e0a91b9f7577ef.tar.gz
More maintainable warning message
Diffstat (limited to 'Source')
-rw-r--r--Source/Modules/overload.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Modules/overload.cxx b/Source/Modules/overload.cxx
index e3f4f586b..f6cd213ee 100644
--- a/Source/Modules/overload.cxx
+++ b/Source/Modules/overload.cxx
@@ -565,7 +565,7 @@ String *Swig_overload_dispatch_cast(Node *n, const_String_or_char_ptr fmt, int *
"Overloaded method %s with no explicit typecheck typemap for arg %d of type '%s'\n",
Swig_name_decl(n), j, SwigType_str(Getattr(pj, "type"), 0));
Swig_warning(WARN_TYPEMAP_TYPECHECK_UNDEF, Getfile(ni), Getline(ni),
- "Dispatching calls to this method may not work correctly, see: https://www.swig.org/Doc4.1/Typemaps.html#Typemaps_overloading\n");
+ "Dispatching calls to this method may not work correctly, see the 'Typemaps and Overloading' section in Typemaps chapter of the documentation\n");
}
Parm *pj1 = Getattr(pj, "tmap:in:next");
if (pj1)
@@ -841,7 +841,7 @@ String *Swig_overload_dispatch(Node *n, const_String_or_char_ptr fmt, int *maxar
"Overloaded method %s with no explicit typecheck typemap for arg %d of type '%s'\n",
Swig_name_decl(n), j, SwigType_str(Getattr(pj, "type"), 0));
Swig_warning(WARN_TYPEMAP_TYPECHECK_UNDEF, Getfile(ni), Getline(ni),
- "Dispatching calls to this method may not work correctly, see: https://www.swig.org/Doc4.1/Typemaps.html#Typemaps_overloading\n");
+ "Dispatching calls to this method may not work correctly, see the 'Typemaps and Overloading' section in Typemaps chapter of the documentation\n");
}
Parm *pk = Getattr(pj, "tmap:in:next");
if (pk)