Skip to content

Erase redundant whitespaces. #230

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
Dec 5, 2015
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion stdlib/public/core/BridgeObjectiveC.swift
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ public func _isBridgedVerbatimToObjectiveC<T>(_: T.Type) -> Bool {

/// Retrieve the Objective-C type to which the given type is bridged.
@warn_unused_result
public func _getBridgedObjectiveCType<T>(_: T.Type) -> Any.Type? {
public func _getBridgedObjectiveCType<T>(_: T.Type) -> Any.Type? {
if _fastPath(_isClassOrObjCExistential(T.self)) {
return T.self
}
Expand Down
4 changes: 2 additions & 2 deletions stdlib/public/core/Character.swift
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ public struct Character :
isASCII: Builtin.Int1) {
self = Character(
String(
_builtinExtendedGraphemeClusterLiteral: start,
byteSize: byteSize,
_builtinExtendedGraphemeClusterLiteral: start,
byteSize: byteSize,
isASCII: isASCII))
}

Expand Down
2 changes: 1 addition & 1 deletion stdlib/public/core/Existential.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// Unavailable; use `AnyGenerator<T>` instead.
@available(*, unavailable, renamed="AnyGenerator")
public struct GeneratorOf<T> {}
public struct GeneratorOf<T> {}

/// Unavailable; use `AnySequence<T>` instead.
@available(*, unavailable, renamed="AnySequence")
Expand Down
4 changes: 2 additions & 2 deletions stdlib/public/core/StringLegacy.swift
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ extension String {
}

/// Create an instance representing `v` in base 10.
public init<T : UnsignedIntegerType>(_ v: T) {
public init<T : UnsignedIntegerType>(_ v: T) {
self = _uint64ToString(v.toUIntMax())
}

Expand All @@ -133,7 +133,7 @@ extension String {
/// starting with `a` if `uppercase` is `false` or `A` otherwise.
public init<T : UnsignedIntegerType>(
_ v: T, radix: Int, uppercase: Bool = false
) {
) {
_precondition(radix > 1, "Radix must be greater than 1")
self = _uint64ToString(
v.toUIntMax(), radix: Int64(radix), uppercase: uppercase)
Expand Down