-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure that thrust fancy iterators are
trivially_copy_constructible
…
… when possible (#1368) Our implementation provides user defined copy constructors, even if that is not necessary, as this was necessary prior to C++11. Having dropped any support for older standard dialects, we can simply rely on defaulting or even better omitting those copy constructors. This ensures that thrust fany iterators are trivially_copy_constructible when possible. I did not rework transform_iterator, as that would require considerable effort due to potentially non copy assignable functors. Addresses #1367
- Loading branch information
Showing
15 changed files
with
132 additions
and
196 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
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
Oops, something went wrong.