This commit is contained in:
Taku Kudo 2017-03-08 19:54:55 +09:00
Родитель 25b376d09a 8ba8c63cd3
Коммит e52f1412d3
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -17,6 +17,7 @@
#include <cstring>
#include <string>
#include <ostream>
namespace sentencepiece {
@ -215,8 +216,7 @@ inline int StringPiece::compare(StringPiece b) const {
}
inline std::ostream &operator<<(std::ostream &o, StringPiece piece) {
o << piece.data();
return o;
return o.write(piece.data(), static_cast<std::streamsize>(piece.size()));
}
struct StringPieceHash {