-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for iterators with const-qualified value type (#1527)
const qualified type iterators were causing problems when checking for usm std::vector iterators because of the way that check must be, we were instantiating ill-formed std::vectors during the check, resulting in static assertions being triggered. This avoids any types which result in ill-formed vectors, as they cannot be eligible anyway. --------- Signed-off-by: Dan Hoeflinger <[email protected]>
- Loading branch information
1 parent
089fbb9
commit 141aa38
Showing
2 changed files
with
32 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters