diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-09-25 16:15:15 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-09-25 16:15:15 -0700 |
commit | 56c19a74e44458003c2470e08055e7fae23fc1c0 (patch) | |
tree | ab68e8db8c27b2c4694fa92858ad2426fce161ee /src | |
parent | ac36f1a7237e1e804d7f07bed4226a3f5a3320d8 (diff) | |
parent | b84fcaf11c9d484ef04e2752955361ff5e4d6148 (diff) |
Merge pull request #587 from imvu/rtti-pull-request
add support for bool rtti
Diffstat (limited to 'src')
-rw-r--r-- | src/library.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/library.js b/src/library.js index 1c150bc9..3531db97 100644 --- a/src/library.js +++ b/src/library.js @@ -4850,6 +4850,7 @@ LibraryManager.library = { // RTTI hacks for exception handling, defining type_infos for common types. // The values are dummies. We simply use the addresses of these statically // allocated variables as unique identifiers. + _ZTIb: [0], // bool _ZTIi: [0], // int _ZTIj: [0], // unsigned int _ZTIl: [0], // long @@ -4863,7 +4864,7 @@ LibraryManager.library = { _ZTIa: [0], // signed char _ZTIh: [0], // unsigned char _ZTIs: [0], // short - _ZTIt: [0], // signed short + _ZTIt: [0], // unsigned short _ZTIv: [0], // void _ZTIPv: [0], // void* |