diff options
author | Bill Welden <bwelden@imvu.com> | 2013-04-09 12:49:32 -0700 |
---|---|---|
committer | Jukka Jylänki <jujjyl@gmail.com> | 2013-04-18 20:08:07 +0300 |
commit | de80f9c04100e57f74f62352981548cd3e322579 (patch) | |
tree | 053f2ba0088ab44c4d90602acdb72010605a9885 /src | |
parent | bdeab9a67107aaacc97bc043b8a753e0c58d7e7d (diff) |
Support for intrusive pointers. This dependency on Northstar must be removed before pusing embind to GitHub.
Diffstat (limited to 'src')
-rwxr-xr-x | src/embind/embind.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/embind/embind.js b/src/embind/embind.js index b8bd5fcf..42250601 100755 --- a/src/embind/embind.js +++ b/src/embind/embind.js @@ -672,7 +672,7 @@ RegisteredPointer.prototype.toWireType = function(destructors, handle) { break; case 1: // INTRUSIVE - throwBindingError('INTRUSIVE sharing policy not yet supported'); + ptr = handle.$$.smartPtr; break; case 2: // BY_EMVAL |