summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2017-07-13 21:10:52 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2017-07-14 08:34:22 +0200
commit4b7c522208deeb80b821a294e4e76e50c78304e7 (patch)
treea2bd4ac2a53c01fd626cb544e5c5bbcc92825372 /include
parent85ff2eafc692f6f0d33ac611600935a96058f20a (diff)
xmlsecurity pdf verify: push_back -> emplace_back
And a few other similar small cleanups. Change-Id: I91c992f33f2166d1cf27cbc9def1b69965040658 Reviewed-on: https://gerrit.libreoffice.org/39928 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/filter/pdfdocument.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/filter/pdfdocument.hxx b/include/vcl/filter/pdfdocument.hxx
index 6c5510ff3483..362d5e637e9e 100644
--- a/include/vcl/filter/pdfdocument.hxx
+++ b/include/vcl/filter/pdfdocument.hxx
@@ -40,7 +40,7 @@ class VCL_DLLPUBLIC PDFElement
{
public:
virtual bool Read(SvStream& rStream) = 0;
- virtual ~PDFElement() { }
+ virtual ~PDFElement() = default;
};
/// Indirect object: something with a unique ID.