loplugin:unnecessaryoverride (dtors) in svgio

Change-Id: Icff1b3d5072c9a854de7ae12141131b0a9650b91
This commit is contained in:
Stephan Bergmann
2016-12-02 11:15:42 +01:00
parent 70b0b2f968
commit b610d25131

View File

@@ -48,7 +48,6 @@ namespace svgio
public:
explicit XSvgParser(
uno::Reference< uno::XComponentContext > const & context);
virtual ~XSvgParser() override;
XSvgParser(const XSvgParser&) = delete;
XSvgParser& operator=(const XSvgParser&) = delete;
@@ -97,10 +96,6 @@ namespace svgio
{
}
XSvgParser::~XSvgParser()
{
}
uno::Sequence< uno::Reference< ::graphic::XPrimitive2D > > XSvgParser::getDecomposition(
const uno::Reference< ::io::XInputStream >& xSVGStream,
const OUString& aAbsolutePath ) throw (uno::RuntimeException, std::exception)