Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
visus
/
scope-guard
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
Using curlybraces in the factory. Unlike mentioned in § 9.1 this seems
to work.
main
offa
7 anni fa
parent
aa331eceb1
commit
053e6edced
1 ha cambiato i file
con
1 aggiunte
e
1 eliminazioni
Visualizzazione separata
Mostra Diff Stats
+1
-1
include/scope_guard.h
+ 1
- 1
include/scope_guard.h
Vedi File
@@ -82,7 +82,7 @@ namespace sr
template<class Deleter>
scope_guard_t<Deleter> scope_guard(Deleter&& deleter) noexcept
{
return scope_guard_t<Deleter>
(std::move(deleter))
;
return scope_guard_t<Deleter>
{std::move(deleter)}
;
}
}
Write
Preview
Loading…
Annulla
Salva