Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
cpp
/
cppcore
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
* Fixed bug in vector_streambuf: convert_cast to char_type failed. replaced by static_cast.
master
bergmann
hace 6 años
padre
22c45564f6
commit
33b90c8cac
Se han
modificado 1 ficheros
con
1 adiciones
y
1 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+1
-1
include/cppcore/misc/vector_streambuf.inl
+ 1
- 1
include/cppcore/misc/vector_streambuf.inl
Ver fichero
@@ -90,7 +90,7 @@ namespace cppcore
auto p = this->pptr();
assert(this->pbase() <= p && p < this->epptr());
*p = c
onvert
_cast<char_type>(ch);
*p =
stati
c_cast<char_type>(ch);
this->pbump(1);
}
return ch;
Escribir
Vista previa
Cargando…
Cancelar
Guardar