This commit is contained in:
Bill Welden 2013-01-02 13:12:05 -08:00 коммит произвёл Jukka Jylänki
Родитель eac098fc24
Коммит ff79babe5d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -459,7 +459,7 @@ RegisteredPointer.prototype.getDynamicRawPointerType = function(ptr) {
RegisteredPointer.prototype.getDynamicDowncastType = function(ptr) {
var downcastType = null;
var type = this.getDynamicRawPointerType(ptr);
if (type && type != this.pointeeType.rawType) {
if (type && type !== this.pointeeType.rawType) {
var derivation = Module.__getDerivationPath(type, this.pointeeType.rawType);
for (var i = 0; i < derivation.size(); i++) {
downcastType = typeRegistry[derivation.at(i)];