Fix ambiguous type reference error (#943)
* Fix ambiguous type reference error * Bump ROS version for testing
This commit is contained in:
parent
5ce8afa559
commit
f0d70d4061
|
@ -2,4 +2,4 @@ PACKAGE_NAME=realm-js
|
|||
VERSION=1.1.1
|
||||
REALM_CORE_VERSION=2.4.0
|
||||
REALM_SYNC_VERSION=1.4.0
|
||||
REALM_OBJECT_SERVER_VERSION=1.0.3
|
||||
REALM_OBJECT_SERVER_VERSION=1.3.0
|
||||
|
|
|
@ -32,7 +32,7 @@ JSObjectRef RJSConstructorCreate(JSContextRef ctx) {
|
|||
}
|
||||
|
||||
void RJSInitializeInContext(JSContextRef ctx) {
|
||||
static const String realm_string = "Realm";
|
||||
static const jsc::String realm_string = "Realm";
|
||||
|
||||
JSObjectRef global_object = JSContextGetGlobalObject(ctx);
|
||||
JSObjectRef realm_constructor = RJSConstructorCreate(ctx);
|
||||
|
|
Loading…
Reference in New Issue