From 44dd818b4df46ca9a6b6aae96b20b606253196eb Mon Sep 17 00:00:00 2001 From: Henrique Nakashima Date: Tue, 27 Jun 2017 10:15:48 -0400 Subject: Adding overload for ostream << CFX_ByteString Bug: pdfium:731 Change-Id: I285332c8f9d988327e8633cb0746af2b76c401e5 Reviewed-on: https://pdfium-review.googlesource.com/6911 Reviewed-by: dsinclair Commit-Queue: dsinclair --- core/fxcrt/cfx_bytestring.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'core/fxcrt/cfx_bytestring.cpp') diff --git a/core/fxcrt/cfx_bytestring.cpp b/core/fxcrt/cfx_bytestring.cpp index b83c59ffeb..967bcce0eb 100644 --- a/core/fxcrt/cfx_bytestring.cpp +++ b/core/fxcrt/cfx_bytestring.cpp @@ -867,8 +867,13 @@ FX_STRSIZE FX_ftoa(float d, char* buf) { } return buf_size; } + CFX_ByteString CFX_ByteString::FormatFloat(float d, int precision) { char buf[32]; FX_STRSIZE len = FX_ftoa(d, buf); return CFX_ByteString(buf, len); } + +std::ostream& operator<<(std::ostream& os, const CFX_ByteString& str) { + return os.write(str.c_str(), str.GetLength()); +} -- cgit v1.2.3