소스 검색

Pointers fix

channel
Ludovic 'Archivist' Lagouardette 3 년 전
부모
커밋
edf2075b1e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      include/gp/utils/pointers.hpp

+ 1
- 1
include/gp/utils/pointers.hpp 파일 보기

@ -36,7 +36,7 @@ namespace gp {
unique_ptr<U> cast() {
auto save = data;
data = nullptr;
return unique_ptr<U>(safe, owner);
return unique_ptr<U>(save, owner);
}
T* operator->() {

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