aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/embind/embind.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/embind/embind.js b/src/embind/embind.js
index 3f10d886..4086e2a5 100755
--- a/src/embind/embind.js
+++ b/src/embind/embind.js
@@ -155,11 +155,6 @@ function resolveType(type) {
if (!type.Handle.prototype.hasOwnProperty(name) && inheritedNames[name].length === 1) {
baseClassType = inheritedNames[name][0];
createInheritedFunctionOrProperty(name, type, name, baseClassType);
- } else {
- for (var j = 0; j < inheritedNames[name].length; j++) {
- baseClassType = inheritedNames[name][j];
- createInheritedFunctionOrProperty(baseClassType.name+"_"+name, type, name, baseClassType);
- }
}
}
}