瀏覽代碼

array from C-array

devel
Ludovic 'Archivist' Lagouardette 4 年之前
父節點
當前提交
6cdcdcd75b
共有 1 個檔案被更改,包括 8 行新增0 行删除
  1. +8
    -0
      include/gp/array.hpp

+ 8
- 0
include/gp/array.hpp 查看文件

@ -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)

Loading…
取消
儲存