Freeze Event enum

Fixes #2238
This commit is contained in:
freak4pc 2020-09-30 07:56:28 +03:00 committed by Shai Mishali
parent 941f3deb82
commit 28a9b8c7e2
3 changed files with 5 additions and 2 deletions

View File

@ -4061,6 +4061,7 @@
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
APPLICATION_EXTENSION_API_ONLY = NO;
BUILD_LIBRARY_FOR_DISTRIBUTION = NO;
INFOPLIST_FILE = Tests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.2;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
@ -4120,6 +4121,7 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
BUILD_LIBRARY_FOR_DISTRIBUTION = NO;
CODE_SIGN_STYLE = Manual;
DEVELOPMENT_TEAM = "";
INFOPLIST_FILE = Tests/Info.plist;
@ -4183,6 +4185,7 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
BUILD_LIBRARY_FOR_DISTRIBUTION = NO;
COMBINE_HIDPI_IMAGES = YES;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Tests/Info.plist;

View File

@ -7,7 +7,7 @@
buildImplicitDependencies = "YES">
</BuildAction>
<TestAction
buildConfiguration = "Release"
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES"

View File

@ -10,7 +10,7 @@
///
/// Sequence grammar:
/// **next\* (error | completed)**
public enum Event<Element> {
@frozen public enum Event<Element> {
/// Next element is produced.
case next(Element)