diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-04-13 05:21:11 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-04-14 01:10:25 +0200 |
commit | 6f12914ddfb4d69c0267b206be654c875da17426 (patch) | |
tree | acc51420bbabe78092bc1a866848fbc8d07efd39 /sc/qa | |
parent | f15a69bd57e578ca607f14cb62f29a16986b96e6 (diff) |
update cppunit to 1.14.0
Change-Id: I95fa42f4ef0580734b605df859c1660b29adb8b2
Reviewed-on: https://gerrit.libreoffice.org/36499
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'sc/qa')
-rw-r--r-- | sc/qa/unit/helper/qahelper.cxx | 6 | ||||
-rw-r--r-- | sc/qa/unit/subsequent_export-test.cxx | 6 | ||||
-rw-r--r-- | sc/qa/unit/subsequent_filters-test.cxx | 21 | ||||
-rw-r--r-- | sc/qa/unit/ucalc.cxx | 5 | ||||
-rw-r--r-- | sc/qa/unit/ucalc_formula.cxx | 5 |
5 files changed, 0 insertions, 43 deletions
diff --git a/sc/qa/unit/helper/qahelper.cxx b/sc/qa/unit/helper/qahelper.cxx index f3cb007f0e9d..6cab0e737d4e 100644 --- a/sc/qa/unit/helper/qahelper.cxx +++ b/sc/qa/unit/helper/qahelper.cxx @@ -71,12 +71,6 @@ std::ostream& operator<<(std::ostream& rStrm, const OpCode& rCode) return rStrm; } -std::ostream& operator<<(std::ostream& rStrm, const SvxCellHorJustify& rCode) -{ - rStrm << static_cast<int>(rCode); - return rStrm; -} - const FileFormat ScBootstrapFixture::aFileFormats[] = { { "ods" , "calc8", "", ODS_FORMAT_TYPE }, { "xls" , "MS Excel 97", "calc_MS_EXCEL_97", XLS_FORMAT_TYPE }, diff --git a/sc/qa/unit/subsequent_export-test.cxx b/sc/qa/unit/subsequent_export-test.cxx index 6cc4bbb407a1..fff91e78bbe9 100644 --- a/sc/qa/unit/subsequent_export-test.cxx +++ b/sc/qa/unit/subsequent_export-test.cxx @@ -295,12 +295,6 @@ private: }; -std::ostream& operator<<(std::ostream& os, SvxBorderLineStyle n) -{ - os << (int)n; - return os; -} - void ScExportTest::registerNamespaces(xmlXPathContextPtr& pXmlXPathCtx) { struct { xmlChar* pPrefix; xmlChar* pURI; } aNamespaces[] = diff --git a/sc/qa/unit/subsequent_filters-test.cxx b/sc/qa/unit/subsequent_filters-test.cxx index 1b6cb2979808..177d84185d6a 100644 --- a/sc/qa/unit/subsequent_filters-test.cxx +++ b/sc/qa/unit/subsequent_filters-test.cxx @@ -362,27 +362,6 @@ private: uno::Reference<uno::XInterface> m_xCalcComponent; }; -std::ostream& operator<<(std::ostream& rStrm, const SvxCellHorJustify& rCode) -{ - rStrm << static_cast<int>(rCode); - return rStrm; -} -std::ostream& operator<<(std::ostream& os, SvxBorderLineStyle n) -{ - os << (int)n; - return os; -} - -namespace com { namespace sun { namespace star { namespace sheet { - -std::ostream& operator<<(std::ostream& rStrm, DataPilotFieldOrientation n) -{ - rStrm << (int) n; - return rStrm; -} - -} } } } - bool ScFiltersTest::load(const OUString &rFilter, const OUString &rURL, const OUString &rUserData, SfxFilterFlags nFilterFlags, SotClipboardFormatId nClipboardID, unsigned int nFilterVersion) diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx index 68b83625acb2..9918e88e7f25 100644 --- a/sc/qa/unit/ucalc.cxx +++ b/sc/qa/unit/ucalc.cxx @@ -94,11 +94,6 @@ #include <utility> #include <vector> -static std::ostream& operator<<(std::ostream& os, ScMatrixMode mode) -{ - os << (int) mode; return os; -} - struct TestImpl { ScDocShellRef m_xDocShell; diff --git a/sc/qa/unit/ucalc_formula.cxx b/sc/qa/unit/ucalc_formula.cxx index 9240320fac2a..4fb2b544fc1c 100644 --- a/sc/qa/unit/ucalc_formula.cxx +++ b/sc/qa/unit/ucalc_formula.cxx @@ -87,11 +87,6 @@ ScRange getCachedRange(const ScExternalRefCache::TableTypeRef& pCacheTab) } -static std::ostream& operator<<(std::ostream& os, ScMatrixMode mode) -{ - os << (int) mode; return os; -} - void Test::testFormulaCreateStringFromTokens() { // Insert sheets. |