Просмотр исходного кода

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

main
offa 8 лет назад
Родитель
Сommit
97289ce254
3 измененных файлов: 3 добавлений и 3 удалений
  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 Просмотреть файл





template<class EF> 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 Просмотреть файл





template<class EF> 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 Просмотреть файл





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


} }



Загрузка…
Отмена
Сохранить