From b54292788f618a8d0779f9c684c73e956cc758e1 Mon Sep 17 00:00:00 2001 From: Ilya Puchka Date: Thu, 28 Dec 2017 21:15:33 +0100 Subject: [PATCH] fixed swift 3 compiler crash --- Sources/Lexer.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Lexer.swift b/Sources/Lexer.swift index 6642f18..bf4d9f8 100644 --- a/Sources/Lexer.swift +++ b/Sources/Lexer.swift @@ -194,4 +194,4 @@ extension String { } } -public typealias RangeLine = (content: String, number: UInt, offset: String.IndexDistance) +public typealias RangeLine = (content: String, number: UInt, offset: Int)