-
-
Save invisiblek/e8c6f37aa25fafec3c00 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/cpu_ref/rsCpuCore.cpp b/cpu_ref/rsCpuCore.cpp | |
index f09e334..28e574b 100644 | |
--- a/cpu_ref/rsCpuCore.cpp | |
+++ b/cpu_ref/rsCpuCore.cpp | |
@@ -63,6 +63,15 @@ RsdCpuReference::~RsdCpuReference() { | |
} | |
RsdCpuReference * RsdCpuReference::create(Context *rsc, uint32_t version_major, | |
+ uint32_t version_minor, sym_lookup_t lfn, script_lookup_t slfn, | |
+ bcc::RSLinkRuntimeCallback pLinkRuntimeCallback, | |
+ RSSelectRTCallback pSelectRTCallback | |
+ ) { | |
+ return RsdCpuReference::create(rsc, version_major, version_minor, lfn, slfn, | |
+ pLinkRuntimeCallback, pSelectRTCallback, NULL); | |
+} | |
+ | |
+RsdCpuReference * RsdCpuReference::create(Context *rsc, uint32_t version_major, | |
uint32_t version_minor, sym_lookup_t lfn, script_lookup_t slfn | |
#ifndef RS_COMPATIBILITY_LIB | |
, bcc::RSLinkRuntimeCallback pLinkRuntimeCallback, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment