Procházet zdrojové kódy

Handling of void-Types added as in P0052R5.

main
offa před 7 roky
rodič
revize
73110f9ed2
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      include/unique_resource.h

+ 1
- 1
include/unique_resource.h Zobrazit soubor

@@ -173,7 +173,7 @@ namespace sr
}

template<class RR = R,
std::enable_if_t<std::is_pointer<RR>::value, int> = 0>
std::enable_if_t<( std::is_pointer<RR>::value && !std::is_void<std::remove_pointer_t<RR>>::value), int> = 0>
std::add_lvalue_reference_t<std::remove_pointer_t<RR>> operator*() const noexcept
{
return *get();

Načítá se…
Zrušit
Uložit