Skip to content

Commit

Permalink
Merge pull request #38 from fortmarek/master
Browse files Browse the repository at this point in the history
Fix can't form range.
  • Loading branch information
pr0zac authored Oct 9, 2018
2 parents 152d565 + 4bc8e5c commit b93df85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EtherKit/ABI.swift
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public indirect enum ABIType: CustomStringConvertible {
prefixLength = prefixLength + placeholder.count
}

for i in 0 ... (value.count - 1) {
for i in 0 ..< value.count {
let tupleElem = value[i]

if tupleElem.isDynamic {
Expand Down

0 comments on commit b93df85

Please sign in to comment.