mirror of
https://github.com/corda/corda.git
synced 2025-01-06 05:04:20 +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;
|
||||
|
||||
while (true) {
|
||||
Value* v = static_cast<Value*>(arguments[index]);
|
||||
Value* v = static_cast<Value*>(arguments[argumentIndex]);
|
||||
|
||||
unsigned footprint
|
||||
= (argumentIndex + 1 < arguments.count and v->nextWord
|
||||
== arguments[index + 1])
|
||||
== arguments[argumentIndex + 1])
|
||||
? 2
|
||||
: 1;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user