-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apparently, some platforms struggle with range-based `for` loops on C-style arrays. Other platforms don't seem to like the C-style array at all, so we're trying a `std::array`. You'd think we'd be able to use range-for with this... but, no, `begin` isn't `constexpr` until C++17, so we're using an indexed loop anyways. Tested on the Aurora-internal code that revealed the problem. Follow-up for #217.
- Loading branch information
Showing
2 changed files
with
10 additions
and
11 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