s/LogicValueType/BooleanType/

We're moving toward using that protocol for straight-up Bool types

Swift SVN r19884
This commit is contained in:
Dave Abrahams
2014-07-12 18:58:18 +00:00
parent 6d1095f44e
commit cbcf9aba21
47 changed files with 100 additions and 100 deletions

View File

@@ -22,7 +22,7 @@ import ObjectiveC
/// On 64-bit iOS, the Objective-C BOOL type is a typedef of C/C++
/// bool. Elsewhere, it is "signed char". The Clang importer imports it as
/// ObjCBool.
public struct ObjCBool : LogicValueType, BooleanLiteralConvertible {
public struct ObjCBool : BooleanType, BooleanLiteralConvertible {
#if os(OSX) || (os(iOS) && (arch(i386) || arch(arm)))
// On OS X and 32-bit iOS, Objective-C's BOOL type is a "signed char".
var value: Int8