mirror of
https://github.com/corda/corda.git
synced 2025-01-22 12:28:11 +00:00
fix arm compiler abort
This commit is contained in:
parent
df553cbdb6
commit
ada6ce4cc3
@ -322,11 +322,11 @@ class CallEvent: public Event {
|
|||||||
unsigned argumentIndex = 0;
|
unsigned argumentIndex = 0;
|
||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
Value* v = static_cast<Value*>(arguments[index]);
|
Value* v = static_cast<Value*>(arguments[argumentIndex]);
|
||||||
|
|
||||||
unsigned footprint
|
unsigned footprint
|
||||||
= (argumentIndex + 1 < arguments.count and v->nextWord
|
= (argumentIndex + 1 < arguments.count and v->nextWord
|
||||||
== arguments[index + 1])
|
== arguments[argumentIndex + 1])
|
||||||
? 2
|
? 2
|
||||||
: 1;
|
: 1;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user