Skip to content
Merged
Changes from 1 commit
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
Next Next commit
Escape swift identifier
  • Loading branch information
tomlokhorst committed May 8, 2020
commit 84f8d96d10db7d69726d21e38611b6fc5c4b8e43
4 changes: 2 additions & 2 deletions Sources/RswiftCore/SwiftTypes/Type.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ struct Type: UsedTypesProvider, CustomStringConvertible, Hashable {
static let _UInt = Type(module: .stdLib, name: "UInt")
static let _Double = Type(module: .stdLib, name: "Double")
static let _Character = Type(module: .stdLib, name: "Character")
static let _CStringPointer = Type(module: .stdLib, name: "UnsafePointer<CChar>")
static let _VoidPointer = Type(module: .stdLib, name: "UnsafePointer<Void>")
static let _CStringPointer = Type(module: .stdLib, name: SwiftIdentifier(rawValue: "UnsafePointer<CChar>"))
static let _VoidPointer = Type(module: .stdLib, name: SwiftIdentifier(rawValue: "UnsafePointer<Void>"))
static let _URL = Type(module: "Foundation", name: "URL")
static let _Bundle = Type(module: "Foundation", name: "Bundle")
static let _Locale = Type(module: "Foundation", name: "Locale")
Expand Down