diff options
author | Jose <jose@zeroc.com> | 2019-10-23 15:00:11 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2019-10-23 16:16:46 +0200 |
commit | 6518405ffe6637319891548e2b5542e87168121f (patch) | |
tree | 5c65b994bc168693189f2c019114e24d3ecd5d25 /cpp | |
parent | Fix for unused parameters in MATLAB generated code - Close #595 (diff) | |
download | ice-6518405ffe6637319891548e2b5542e87168121f.tar.bz2 ice-6518405ffe6637319891548e2b5542e87168121f.tar.xz ice-6518405ffe6637319891548e2b5542e87168121f.zip |
Fix invalid generated code for local interface - Close #596
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/slice2matlab/Main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2matlab/Main.cpp b/cpp/src/slice2matlab/Main.cpp index d5db1c23fc9..540317a8a34 100644 --- a/cpp/src/slice2matlab/Main.cpp +++ b/cpp/src/slice2matlab/Main.cpp @@ -2633,7 +2633,7 @@ CodeVisitor::visitClassDefStart(const ClassDefPtr& p) { out << " & "; } - out << " < " << getAbsolute(*q); + out << getAbsolute(*q); } } |