diff options
author | Chad Austin <chad@imvu.com> | 2013-03-19 03:22:47 -0700 |
---|---|---|
committer | Jukka Jylänki <jujjyl@gmail.com> | 2013-04-12 14:26:14 +0300 |
commit | 78568fe4c2ba8fd014fd8af23453ac8b2d0728f5 (patch) | |
tree | f9950ed8fc221e21ca7a369ac72b41cfc7036960 /src | |
parent | 09effb641c418d7b8751b04f215d7192075b72cb (diff) |
Remove some dead code
Diffstat (limited to 'src')
-rwxr-xr-x | src/embind/embind.js | 4 |
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; |