You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If multiple (v2) containers are used in a single program unit, some of the procedure names conflict. E.g., before begin() was only a type-bound procedure on containers that support iterators. But it is now also a PUBLIC function that takes an iterator as an argument.
I took the easy path and did not use a generic interface block to expose the method which results in unnecessary name conflicts. The correction is to use interface blocks in each case. Tedious, but straightforward.
The text was updated successfully, but these errors were encountered:
If multiple (v2) containers are used in a single program unit, some of the procedure names conflict. E.g., before
begin()
was only a type-bound procedure on containers that support iterators. But it is now also a PUBLIC function that takes an iterator as an argument.I took the easy path and did not use a generic interface block to expose the method which results in unnecessary name conflicts. The correction is to use interface blocks in each case. Tedious, but straightforward.
The text was updated successfully, but these errors were encountered: