Skip to content

[gardening] fix enum value spacing #4899

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 21, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions stdlib/public/Platform/MachError.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#if os(OSX) || os(iOS) || os(tvOS) || os(watchOS)
/// Enumeration describing Mach error codes.
@objc public enum MachErrorCode : Int32 {
case success = 0
case success = 0

/// Specified address is not currently valid.
case invalidAddress = 1
Expand All @@ -19,7 +19,7 @@
case invalidArgument = 4

/// The function could not be performed. A catch-all.
case failure = 5
case failure = 5

/// A system resource could not be allocated to fulfill this
/// request. This failure may not be permanent.
Expand Down Expand Up @@ -68,7 +68,7 @@
case invalidValue = 18

/// Operation would overflow limit on user-references.
case userReferencesOverflow = 19
case userReferencesOverflow = 19

/// The supplied (port) capability is improper.
case invalidCapability = 20
Expand Down