Skip to content

Commit 617187b

Browse files
committed
Update style of Graph
1 parent 491be71 commit 617187b

File tree

3 files changed

+23
-8
lines changed

3 files changed

+23
-8
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>

Graph/Graph/Edge.swift

+7-8
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,13 @@ extension Edge: CustomStringConvertible {
2929

3030
extension Edge: Hashable {
3131

32-
public func hash(into hasher: inout Hasher) {
33-
hasher.combine(from)
34-
hasher.combine(to)
35-
if weight != nil {
36-
hasher.combine(weight)
37-
}
38-
}
39-
32+
public func hash(into hasher: inout Hasher) {
33+
hasher.combine(from)
34+
hasher.combine(to)
35+
if weight != nil {
36+
hasher.combine(weight)
37+
}
38+
}
4039

4140
}
4241

0 commit comments

Comments
 (0)