mirror of
https://github.com/corda/corda.git
synced 2025-01-31 16:35:43 +00:00
fix MSVC build regression
This commit is contained in:
parent
8f308291b0
commit
3665753d1f
@ -5679,7 +5679,7 @@ compile(MyThread* t, Frame* initialFrame, unsigned initialIp,
|
||||
uint32_t newIp = base + codeReadInt32(t, code, index);
|
||||
assert(t, newIp < codeLength(t, code));
|
||||
|
||||
RUNTIME_ARRAY_BODY(ipTable)[i] = newIp;
|
||||
ipTable[i] = newIp;
|
||||
|
||||
Promise* p = c->poolAppend(key);
|
||||
if (i == 0) {
|
||||
@ -6205,7 +6205,7 @@ compile(MyThread* t, Frame* initialFrame, unsigned initialIp,
|
||||
uint32_t newIp = base + codeReadInt32(t, code, index);
|
||||
assert(t, newIp < codeLength(t, code));
|
||||
|
||||
RUNTIME_ARRAY_BODY(ipTable)[i] = newIp;
|
||||
ipTable[i] = newIp;
|
||||
|
||||
Promise* p = c->poolAppendPromise
|
||||
(frame->addressPromise(c->machineIp(newIp)));
|
||||
|
Loading…
x
Reference in New Issue
Block a user