Kaynağa Gözat

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

main
offa 7 yıl önce
ebeveyn
işleme
97289ce254
3 değiştirilmiş dosya ile 3 ekleme ve 3 silme
  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 Dosyayı Görüntüle

@@ -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 Dosyayı Görüntüle

@@ -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 Dosyayı Görüntüle

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

}


Yükleniyor…
İptal
Kaydet