Explorar el Código

Pointers fix

channel
Ludovic 'Archivist' Lagouardette hace 3 años
padre
commit
edf2075b1e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      include/gp/utils/pointers.hpp

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

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

Cargando…
Cancelar
Guardar