浏览代码

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->() {

正在加载...
取消
保存