mirror of
https://github.com/corda/corda.git
synced 2025-01-04 04:04:27 +00:00
Merge pull request #280 from joshuawarner32/master
Fix arm compiler abort
This commit is contained in:
commit
dbfd65a44d
@ -8,7 +8,7 @@ if test $# -eq 0; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
while test $# > 1 ; do
|
||||
while test $# -gt 1 ; do
|
||||
key="$1"
|
||||
case $key in
|
||||
-c|--container)
|
||||
|
@ -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