aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChad Austin <chad@imvu.com>2013-03-19 03:22:47 -0700
committerJukka Jylänki <jujjyl@gmail.com>2013-04-12 14:26:14 +0300
commit78568fe4c2ba8fd014fd8af23453ac8b2d0728f5 (patch)
treef9950ed8fc221e21ca7a369ac72b41cfc7036960 /src
parent09effb641c418d7b8751b04f215d7192075b72cb (diff)
Remove some dead code
Diffstat (limited to 'src')
-rwxr-xr-xsrc/embind/embind.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/embind/embind.js b/src/embind/embind.js
index c1f9552d..35d9dfdf 100755
--- a/src/embind/embind.js
+++ b/src/embind/embind.js
@@ -470,6 +470,8 @@ function RegisteredPointer(
Handle,
isReference,
isConst,
+
+ // smart pointer properties
isSmartPointer,
pointeeType,
sharingPolicy,
@@ -484,6 +486,8 @@ function RegisteredPointer(
this.Handle = Handle; // <-- I think I can kill this
this.isReference = isReference;
this.isConst = isConst;
+
+ // smart pointer properties
this.isSmartPointer = isSmartPointer;
this.pointeeType = pointeeType;
this.sharingPolicy = sharingPolicy;