Bläddra i källkod

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

main
offa 7 år sedan
förälder
incheckning
97289ce254
3 ändrade filer med 3 tillägg och 3 borttagningar
  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 Visa fil

@@ -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 Visa fil

@@ -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 Visa fil

@@ -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>;

}


Laddar…
Avbryt
Spara