소스 검색

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)

불러오는 중...
취소
저장