diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-11-09 20:40:51 +0100 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-11-21 15:47:38 +0100 |
commit | 19b586543b08325897278ef8b4a65ac81615978d (patch) | |
tree | 439d715dea562f1b88078529451d5ba1c33225f8 /svl | |
parent | f23d3661ab04601650db95f846081317fc06801d (diff) |
qa: remove duplicated operators
it's already defined in include/tools/color.hxx
Change-Id: I26eaba4a1279fadd8669e9702b695e02871052d9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142512
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'svl')
-rw-r--r-- | svl/qa/unit/svl.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/svl/qa/unit/svl.cxx b/svl/qa/unit/svl.cxx index 88add0a71793..29bbde9b999d 100644 --- a/svl/qa/unit/svl.cxx +++ b/svl/qa/unit/svl.cxx @@ -42,12 +42,6 @@ using namespace ::com::sun::star; using namespace svl; -static std::ostream& operator<<(std::ostream& rStrm, const Color& rColor) -{ - rStrm << "Color: R:" << static_cast<int>(rColor.GetRed()) << " G:" << static_cast<int>(rColor.GetGreen()) << " B: " << static_cast<int>(rColor.GetBlue()); - return rStrm; -} - namespace svl { static std::ostream& operator<<(std::ostream& rStrm, const SharedString& string ) |