diff options
author | Ryan Harrison <rharrison@chromium.org> | 2017-06-28 11:25:37 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-06-28 15:42:06 +0000 |
commit | 475f43338d78ff889851967a09b7398574d95a44 (patch) | |
tree | 2a27d6f83ae1f1bd83d85ea9783554255b821fce /core/fxcrt/cfx_widestring.h | |
parent | d8df8d4cd419258b50413c4eb730d144824844f0 (diff) | |
download | pdfium-475f43338d78ff889851967a09b7398574d95a44.tar.xz |
Add << overload for CFX_WideString
BUG=pdfium:788
Change-Id: I9f211d42e60c0d8b7b3c508d340036a3b26542dd
Reviewed-on: https://pdfium-review.googlesource.com/7041
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'core/fxcrt/cfx_widestring.h')
-rw-r--r-- | core/fxcrt/cfx_widestring.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/fxcrt/cfx_widestring.h b/core/fxcrt/cfx_widestring.h index 977114816d..3d69b0be55 100644 --- a/core/fxcrt/cfx_widestring.h +++ b/core/fxcrt/cfx_widestring.h @@ -228,6 +228,10 @@ inline bool operator!=(const CFX_WideStringC& lhs, const CFX_WideString& rhs) { uint32_t FX_HashCode_GetW(const CFX_WideStringC& str, bool bIgnoreCase); +std::wostream& operator<<(std::wostream& os, const CFX_WideString& str); + +std::ostream& operator<<(std::ostream& os, const CFX_WideString& str); + namespace std { template <> |