Ver código fonte

Pointers fix

channel
Ludovic 'Archivist' Lagouardette 3 anos atrás
pai
commit
edf2075b1e
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      include/gp/utils/pointers.hpp

+ 1
- 1
include/gp/utils/pointers.hpp Ver arquivo

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

Carregando…
Cancelar
Salvar