mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
9 lines
281 B
C++
9 lines
281 B
C++
#include <functional>
|
|
#include <string>
|
|
|
|
/// Used for std::string conformance to Swift.Hashable
|
|
typedef std::hash<std::string> __swift_interopHashOfString;
|
|
|
|
/// Used for std::u16string conformance to Swift.Hashable
|
|
typedef std::hash<std::u16string> __swift_interopHashOfU16String;
|