Mercurial > hg > octave-lyh
diff src/mex.cc @ 6218:c1b66b74937d
[project @ 2006-12-27 17:43:50 by jwe]
author | jwe |
---|---|
date | Wed, 27 Dec 2006 17:43:51 +0000 |
parents | 160958073cde |
children | d86ea52f5f43 |
line wrap: on
line diff
--- a/src/mex.cc +++ b/src/mex.cc @@ -413,7 +413,7 @@ id = mxINT64_CLASS; else if (cn == "uint64") id = mxUINT64_CLASS; - else if (cn == "function handle") + else if (cn == "function_handle") id = mxFUNCTION_CLASS; return id; @@ -848,7 +848,7 @@ case mxUINT32_CLASS: return "uint32"; case mxINT64_CLASS: return "int64"; case mxUINT64_CLASS: return "uint64"; - case mxFUNCTION_CLASS: return "function handle"; + case mxFUNCTION_CLASS: return "function_handle"; default: return "unknown"; } }