diff options
author | Albert Astals Cid <aacid@kde.org> | 2025-01-02 00:10:50 +0100 |
---|---|---|
committer | Albert Astals Cid <aacid@kde.org> | 2025-01-02 00:10:50 +0100 |
commit | 221914fb062253b879c9fbf5a58e89330e679313 (patch) | |
tree | b1bbc7c721e5218f7a54b5512c4ee881a401affe | |
parent | ccdd172fc6361b45674639bfdc44f209038af77d (diff) |
Add missing std::move
-rw-r--r-- | poppler/Form.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poppler/Form.cc b/poppler/Form.cc index 6e351070..d119004c 100644 --- a/poppler/Form.cc +++ b/poppler/Form.cc @@ -2206,7 +2206,7 @@ FormFieldSignature::~FormFieldSignature() void FormFieldSignature::setSignature(std::vector<unsigned char> &&sig) { - signature = sig; + signature = std::move(sig); } const GooString &FormFieldSignature::getCustomAppearanceContent() const |