diff options
Diffstat (limited to 'core/fxcrt/cfx_bytestring.cpp')
-rw-r--r-- | core/fxcrt/cfx_bytestring.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/fxcrt/cfx_bytestring.cpp b/core/fxcrt/cfx_bytestring.cpp index 967bcce0eb..9d67ed30a1 100644 --- a/core/fxcrt/cfx_bytestring.cpp +++ b/core/fxcrt/cfx_bytestring.cpp @@ -877,3 +877,7 @@ CFX_ByteString CFX_ByteString::FormatFloat(float d, int precision) { std::ostream& operator<<(std::ostream& os, const CFX_ByteString& str) { return os.write(str.c_str(), str.GetLength()); } + +std::ostream& operator<<(std::ostream& os, const CFX_ByteStringC& str) { + return os.write(str.c_str(), str.GetLength()); +} |