diff options
author | AMIT KUMAR YADAV | 2016-06-21 17:05:52 +0530 |
---|---|---|
committer | AMIT KUMAR YADAV | 2016-06-21 17:05:52 +0530 |
commit | 8f98e27ffbb65c2d973cb3c15813e1b45a0e60e6 (patch) | |
tree | 992e96d7d815fe1b937091a9fd07130c5522b8c8 /data_structures/BITSET.js | |
parent | 0a3788d46553caffc5240d6010e5a8e1703c5aaf (diff) | |
download | xcos-on-web-8f98e27ffbb65c2d973cb3c15813e1b45a0e60e6.tar.gz xcos-on-web-8f98e27ffbb65c2d973cb3c15813e1b45a0e60e6.tar.bz2 xcos-on-web-8f98e27ffbb65c2d973cb3c15813e1b45a0e60e6.zip |
Fixed edge case of scilab integer
Diffstat (limited to 'data_structures/BITSET.js')
-rw-r--r-- | data_structures/BITSET.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data_structures/BITSET.js b/data_structures/BITSET.js index 289cc42..ed7bccf 100644 --- a/data_structures/BITSET.js +++ b/data_structures/BITSET.js @@ -9,7 +9,7 @@ function BITSET () { model.out2 = new ScilabDouble([1]); model.intyp = new ScilabDouble([3]); model.outtyp = new ScilabDouble([3]); - model.opar=list(new ScilabInteger(0)); + model.opar=list(new ScilabInteger([0])); model.blocktype = new ScilabString(["c"]); model.dep_ut = new ScilabBoolean([true,false]); |