I'm running on windows using studio 2013 to compile a 64-bit hashtable. I can't get clear or remove to work with the simple code below:
var HashTable = require('../node_modules/hashtable');
var h = new HashTable();
h.put('aaa', '');
console.log(h.size()); // Says 1
h.clear();
The error I get is:
Process finished with exit code -1073741819 (0xC0000005)
What am I doing wrong?
I'm running on windows using studio 2013 to compile a 64-bit
hashtable. I can't getclearorremoveto work with the simple code below:The error I get is:
What am I doing wrong?