-
Notifications
You must be signed in to change notification settings - Fork 169
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix
basic_any
on nvcc-12 and earlier
part of this fix involves removing some deleted constructors that prevented temporaries from binding to "const&" basic_any objects, such as: std::ostream& operator<<( std::ostream& sout, basic_any< iostreamable<> const & > obj ); std::cout << MyWidget{}; // was disallowed, now ok it is a change i have wanted to make anyway since a generic utility like `basic_any` shouldn't be proscriptive about such things. Rather, a type implemented in terms of `basic_any` might disallow such potentially unsafe conversions.
- Loading branch information
1 parent
fd1b467
commit 7036a62
Showing
5 changed files
with
41 additions
and
50 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
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