fix for last test

This commit is contained in:
Ari Lazier 2016-01-12 08:16:13 -08:00
parent 211f0eddd5
commit ced472b47e
2 changed files with 3 additions and 2 deletions

View File

@ -5,7 +5,6 @@
#pragma once
#include <JavaScriptCore/JSBase.h>
#include <string>
#ifdef __cplusplus
extern "C" {

View File

@ -108,7 +108,9 @@ std::map<std::string, JSValueRef> &RJSPrototypes(Realm *realm) {
// static std::string s_defaultPath = realm::default_realm_file_directory() + "/default.realm";
static std::string s_defaultPath = "";
std::string RJSDefaultPath() {
if (s_defaultPath.size() == 0) {
s_defaultPath = realm::default_realm_file_directory() + "/default.realm";
}
return s_defaultPath;
}
void RJSSetDefaultPath(std::string path) {