Swapped pointers to the other side for types to prevent ambiguity, i.e. *int instead of int*
This commit is contained in:
@@ -19,7 +19,7 @@ obj map<T,U> (Object) {
|
||||
keys.construct()
|
||||
values.construct()
|
||||
}
|
||||
fun copy_construct(old: map<T,U>*) {
|
||||
fun copy_construct(old: *map<T,U>) {
|
||||
keys.copy_construct(&old->keys)
|
||||
values.copy_construct(&old->values)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user