Explorar el Código

Deduction guides for the scope guards updated (#105).

main
offa hace 7 años
padre
commit
97289ce254
Se han modificado 3 ficheros con 3 adiciones y 3 borrados
  1. +1
    -1
      include/scope_exit.h
  2. +1
    -1
      include/scope_fail.h
  3. +1
    -1
      include/scope_success.h

+ 1
- 1
include/scope_exit.h Ver fichero

@@ -53,7 +53,7 @@ namespace sr


template<class EF>
scope_exit(EF&& ef) -> scope_exit<std::decay_t<EF>>;
scope_exit(EF) -> scope_exit<EF>;

}


+ 1
- 1
include/scope_fail.h Ver fichero

@@ -63,7 +63,7 @@ namespace sr


template<class EF>
scope_fail(EF&& ef) -> scope_fail<std::decay_t<EF>>;
scope_fail(EF) -> scope_fail<EF>;

}


+ 1
- 1
include/scope_success.h Ver fichero

@@ -56,7 +56,7 @@ namespace sr


template<class EF>
scope_success(EF&& ef) -> scope_success<std::decay_t<EF>>;
scope_success(EF) -> scope_success<EF>;

}


Cargando…
Cancelar
Guardar