From ce8ca37969b4e4118bfe7afba3ae048141dda64f Mon Sep 17 00:00:00 2001 From: Peter Baumgartner Date: Tue, 19 Feb 2019 14:30:27 +0100 Subject: [PATCH] Tweaked function signature --- BXSwiftUtils/Collections/Mirror+IterateProperties.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BXSwiftUtils/Collections/Mirror+IterateProperties.swift b/BXSwiftUtils/Collections/Mirror+IterateProperties.swift index 246de19..5a8f1bf 100644 --- a/BXSwiftUtils/Collections/Mirror+IterateProperties.swift +++ b/BXSwiftUtils/Collections/Mirror+IterateProperties.swift @@ -34,7 +34,7 @@ public extension Mirror public static func iterateProperties( of target: Any, - with type: T.Type = T.self, + type: T.Type = T.self, recursive: Bool = false, perform closure: (T)->Void) {