-
Notifications
You must be signed in to change notification settings - Fork 3
gcc compat #29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gcc compat #29
Conversation
| T _data[Extent]; | ||
|
|
||
| constexpr Constant(T (&_arr)[Extent]) noexcept : Constant(_arr, make_index_sequence<Extent>()) {} | ||
| constexpr Constant(T (&_arr)[Extent]) noexcept : Constant(_arr, std::make_index_sequence<Extent>()) {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we have rsl implementation for the index sequence, see projects/util/include/rsl/constant_sequence:43
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm opting to not change it for now. It makes no difference here and <rsl/constant_wrapper> will go soon-ish anyway. libstdc++ already has it and I'm making good progress with the libc++ implementation.
Signed-off-by: Tsche <[email protected]>
Signed-off-by: Tsche <[email protected]>
Signed-off-by: Tsche <[email protected]>
Signed-off-by: Tsche <[email protected]>
Signed-off-by: Tsche <[email protected]>
Signed-off-by: Tsche <[email protected]>
Signed-off-by: Tsche <[email protected]>
No description provided.