Skip to content

Commit

Permalink
Fixed Swift 3 compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
colemancda committed Apr 19, 2018
1 parent c8806b0 commit 2805db0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/GATTDatabase.swift
Original file line number Diff line number Diff line change
Expand Up @@ -415,9 +415,9 @@ internal extension GATTDatabase {
let isPrimary: Bool

switch attribute.uuid {
case .primaryService:
case BluetoothUUID.primaryService:
isPrimary = true
case .secondaryService:
case BluetoothUUID.secondaryService:
isPrimary = false
default:
return nil // invalid uuid
Expand Down

0 comments on commit 2805db0

Please sign in to comment.