fix merge problem
Argument::isScalar() was moved to Qualified and should be checked via Argument::typerelease/4.3a0
parent
e2abfe256d
commit
c9666a1b44
|
@ -69,7 +69,7 @@ void Argument::matlab_unwrap(FileWriter& file, const string& matlabName) const {
|
||||||
|
|
||||||
string cppType = type.qualifiedName("::");
|
string cppType = type.qualifiedName("::");
|
||||||
string matlabUniqueType = type.qualifiedName();
|
string matlabUniqueType = type.qualifiedName();
|
||||||
bool isNotScalar = !Argument::isScalar();
|
bool isNotScalar = !type.isScalar();
|
||||||
|
|
||||||
// We cannot handle scalar non const references
|
// We cannot handle scalar non const references
|
||||||
if (!isNotScalar && is_ref && !is_const) {
|
if (!isNotScalar && is_ref && !is_const) {
|
||||||
|
|
Loading…
Reference in New Issue