diff options
author | Herbert Dürr <hdu@apache.org> | 2013-11-28 15:52:32 +0000 |
---|---|---|
committer | Herbert Dürr <hdu@apache.org> | 2013-11-28 15:52:32 +0000 |
commit | 1a15756db5173403fcdbc3ad522c3a76e88a7082 (patch) | |
tree | 915c55a6ea8920d9bf44229129cdfcd2679a3914 /unodevtools | |
parent | b8354e209b88f3375635f20542096ed1dac24ba8 (diff) |
#i123068# remove implicit conversions from rtl strings to their elements
Notes
Notes:
prefer: 112bdf84d684590e042725c7173e059b4afa2f83
Diffstat (limited to 'unodevtools')
-rw-r--r-- | unodevtools/source/skeletonmaker/skeletoncommon.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/unodevtools/source/skeletonmaker/skeletoncommon.hxx b/unodevtools/source/skeletonmaker/skeletoncommon.hxx index 5bdb314ab1dc..c58846077efa 100644 --- a/unodevtools/source/skeletonmaker/skeletoncommon.hxx +++ b/unodevtools/source/skeletonmaker/skeletoncommon.hxx @@ -32,6 +32,8 @@ #include <hash_set> #include <map> +inline std::ostream& operator<<( std::ostream& s, const rtl::OString r) { return (s << r.getStr()); } + namespace skeletonmaker { typedef ::std::map< ::rtl::OString, ::std::vector< ::rtl::OString >, |