Skip to content

Commit

Permalink
fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
damienpontifex committed Oct 16, 2020
1 parent db85230 commit d54af83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/svg/SVGParser.swift
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ open class SVGParser {
}
var rgbValue: UInt32 = 0
if #available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *), let scannedInt = Scanner(string: cleanedHexString).scanUInt64(representation: .hexadecimal) {
rgbValue = UInt32(scannedInt)
rgbValue = UInt32(scannedInt)
} else {
Scanner(string: cleanedHexString).scanHexInt32(&rgbValue)
}
Expand Down

0 comments on commit d54af83

Please sign in to comment.