Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
Archivist
/
gplib
Segui
1
Vota
1
Forka
0
Codice
Problemi
8
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
fixed stuff for trivially destructibles
Also works for fixing base types since they are trivially destructibles.
master
Ludovic 'Archivist' Lagouardette
3 anni fa
parent
83a347f975
commit
7b756ce477
1 ha cambiato i file
con
1 aggiunte
e
0 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+1
-0
include/gp/containers/vector.hpp
+ 1
- 0
include/gp/containers/vector.hpp
Vedi File
@ -88,6 +88,7 @@ namespace gp{
new
(
ary
+
i
)
T
(
oth
[
i
]
)
;
}
}
else
if
(
sz
>
oth
.
sz
)
{
if
constexpr
(
!
std
:
:
is_trivially_destructible_v
<
T
>
)
for
(
size_t
i
=
oth
.
sz
;
i
<
sz
;
+
+
i
)
{
ary
[
i
]
-
>
~
T
(
)
;
}
Scrivi
Anteprima
Caricamento…
Annulla
Salva