Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
Archivist
/
gplib
Seguir
1
Destacar
1
Fork
0
Código
Incidencias
8
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
fixed stuff for trivially destructibles
Also works for fixing base types since they are trivially destructibles.
master
Ludovic 'Archivist' Lagouardette
hace 3 años
padre
83a347f975
commit
7b756ce477
Se han
modificado 1 ficheros
con
1 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+1
-0
include/gp/containers/vector.hpp
+ 1
- 0
include/gp/containers/vector.hpp
Ver fichero
@ -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
(
)
;
}
Escribir
Vista previa
Cargando…
Cancelar
Guardar