From 15c40b9bf8bb6905fdfd7dcca39aff535f125fe6 Mon Sep 17 00:00:00 2001 From: Tomer HaCohen Date: Tue, 25 Jun 2024 12:59:19 +0300 Subject: [PATCH] BeLogical: fix retroactive conformance error. --- Sources/Nimble/Matchers/BeLogical.swift | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Sources/Nimble/Matchers/BeLogical.swift b/Sources/Nimble/Matchers/BeLogical.swift index 5170299f7..ea04915e1 100644 --- a/Sources/Nimble/Matchers/BeLogical.swift +++ b/Sources/Nimble/Matchers/BeLogical.swift @@ -1,42 +1,42 @@ import Foundation -extension Int8: ExpressibleByBooleanLiteral { +extension Int8: Swift.ExpressibleByBooleanLiteral { public init(booleanLiteral value: Bool) { self = NSNumber(value: value).int8Value } } -extension UInt8: ExpressibleByBooleanLiteral { +extension UInt8: Swift.ExpressibleByBooleanLiteral { public init(booleanLiteral value: Bool) { self = NSNumber(value: value).uint8Value } } -extension Int16: ExpressibleByBooleanLiteral { +extension Int16: Swift.ExpressibleByBooleanLiteral { public init(booleanLiteral value: Bool) { self = NSNumber(value: value).int16Value } } -extension UInt16: ExpressibleByBooleanLiteral { +extension UInt16: Swift.ExpressibleByBooleanLiteral { public init(booleanLiteral value: Bool) { self = NSNumber(value: value).uint16Value } } -extension Int32: ExpressibleByBooleanLiteral { +extension Int32: Swift.ExpressibleByBooleanLiteral { public init(booleanLiteral value: Bool) { self = NSNumber(value: value).int32Value } } -extension UInt32: ExpressibleByBooleanLiteral { +extension UInt32: Swift.ExpressibleByBooleanLiteral { public init(booleanLiteral value: Bool) { self = NSNumber(value: value).uint32Value } } -extension Int64: ExpressibleByBooleanLiteral { +extension Int64: Swift.ExpressibleByBooleanLiteral { public init(booleanLiteral value: Bool) { self = NSNumber(value: value).int64Value }