summaryrefslogtreecommitdiff
path: root/Lib/scilab
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2022-09-18 20:20:21 +0100
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2022-09-19 09:09:29 +0100
commited333b6b9720e0569cd3c7ccee8f1fc1b60da9f8 (patch)
tree8a0e78d0ce7353aab44e8a5452833d535db4991a /Lib/scilab
parent4a29229bab06cd5ab21715c93c03e9280feae065 (diff)
downloadswig-ed333b6b9720e0569cd3c7ccee8f1fc1b60da9f8.tar.gz
std::string throws typemaps
Go, Guile, Racket, Scilab: Add throws typemaps for std::string so that thrown string exception messages can be seen. Test all language for std::string throws typemaps
Diffstat (limited to 'Lib/scilab')
-rw-r--r--Lib/scilab/std_string.i8
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/scilab/std_string.i b/Lib/scilab/std_string.i
index 71ac6d2f4..8736c2a28 100644
--- a/Lib/scilab/std_string.i
+++ b/Lib/scilab/std_string.i
@@ -37,3 +37,11 @@ SWIG_From_dec(std::string)(std::string pstValue) {
}
%include <typemaps/std_string.swg>
+
+%typemap(throws, noblock=1) std::string {
+ SWIG_Scilab_Raise_Ex($1.c_str(), "$type", $&descriptor);
+}
+
+%typemap(throws, noblock=1) const std::string & {
+ SWIG_Scilab_Raise_Ex($1.c_str(), "$type", $descriptor);
+}