Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add constraint to vec <<, >> operators
I assume it was simply an oversight that we forgot to add this constraint to these operators. This synopsis already listed the constraint in its comment, so this change just brings the description into alignment with the synopsis. C++ does not allow `<<` or `>>` operators where the left-hand-side is a floating point value. In addition, DPC++ already diagnoses an error if you attempt to use `vec::operator<<` where the left-hand-side is a floating point value.
- Loading branch information