diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-11-17 16:33:21 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-11-17 17:12:00 +0100 |
commit | a7d798e35e084e4c65798b016a88b215a745530d (patch) | |
tree | 0baec9844d174c750c663cdcd1a6d9ccb7e8df39 /sw | |
parent | c03b691a7cd8eba128204c851b99e0b75c580c0c (diff) |
Work around warning C4702: unreachable code
...introduced with 82d08580e368afbc9d73da3613845a36a89b0a8c " switch saxparser
from expat to libxml2"
Change-Id: I4e214fff0f3650b44f299f112b27c607c7936c03
Diffstat (limited to 'sw')
-rw-r--r-- | sw/qa/extras/ooxmlexport/ooxmlexport4.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport4.cxx b/sw/qa/extras/ooxmlexport/ooxmlexport4.cxx index fb970fb4ac7a..d0c6e87a7fa4 100644 --- a/sw/qa/extras/ooxmlexport/ooxmlexport4.cxx +++ b/sw/qa/extras/ooxmlexport/ooxmlexport4.cxx @@ -582,7 +582,7 @@ DECLARE_OOXMLEXPORT_TEST(testTableCurruption, "tableCurrupt.docx") DECLARE_OOXMLEXPORT_TEST(testDateControl, "date-control.docx") { -return; +if (true) return; // check XML xmlDocPtr pXmlDoc = parseExport("word/document.xml"); if (!pXmlDoc) |