Skip to content

Commit 670ff64

Browse files
committed
0: Dictionary fix.
1 parent 0448e15 commit 670ff64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Dictionary.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ public extension Swift.Dictionary : ISequence<(Key,Value)> {
358358
#endif
359359

360360
#if ECHOES
361-
@Implements(typeOf(IEnumerable), "GetEnumerator")
361+
@Implements(typeOf(System.Collections.IEnumerable), "GetEnumerator")
362362
func GetEnumeratorNG() -> System.Collections.IEnumerator! {
363363
for entry in dictionary {
364364
var item: (Key, Value) = (entry.Key, entry.Value)

0 commit comments

Comments
 (0)