Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
cpp
/
cppcore
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
* Fixed bug in vector_streambuf: convert_cast to char_type failed. replaced by static_cast.
master
bergmann
6 anni fa
parent
22c45564f6
commit
33b90c8cac
1 ha cambiato i file
con
1 aggiunte
e
1 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+1
-1
include/cppcore/misc/vector_streambuf.inl
+ 1
- 1
include/cppcore/misc/vector_streambuf.inl
Vedi File
@@ -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;
Scrivi
Anteprima
Caricamento…
Annulla
Salva