Pārlūkot izejas kodu

array from C-array

devel
Ludovic 'Archivist' Lagouardette pirms 4 gadiem
vecāks
revīzija
6cdcdcd75b
1 mainītis faili ar 8 papildinājumiem un 0 dzēšanām
  1. +8
    -0
      include/gp/array.hpp

+ 8
- 0
include/gp/array.hpp Parādīt failu

@ -19,6 +19,14 @@ namespace gp{
: ary{gp::forward(v...)}
{}
template<>
array<T[sz]>(T (&& oth)[sz]) {
gp::move_uninitialized(
gp::nameless_range(oth, oth+sz),
gp::nameless_range(*this)
);
}
constexpr T& operator[] (size_t off)
{
if constexpr (gp_config::has_buffer_bounds)

Notiek ielāde…
Atcelt
Saglabāt