aboutsummaryrefslogtreecommitdiffstats
path: root/include/gpg/GpgKeySignature.h
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-08-11 05:21:57 +0000
committerSaturneric <[email protected]>2021-08-11 05:21:57 +0000
commita5cf56e93e4e6a856b2f21730c7bfbfa413410ff (patch)
treecdfd1bb9eaf5ba7bfce4a7e4512f371d9d75107d /include/gpg/GpgKeySignature.h
parentSplit some source files that are too large. (diff)
downloadGpgFrontend-a5cf56e93e4e6a856b2f21730c7bfbfa413410ff.tar.gz
GpgFrontend-a5cf56e93e4e6a856b2f21730c7bfbfa413410ff.zip
Continue to improve functions.
Split source files that are too long.
Diffstat (limited to '')
-rw-r--r--include/gpg/GpgKeySignature.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/gpg/GpgKeySignature.h b/include/gpg/GpgKeySignature.h
index 05a212a7..0dd2f893 100644
--- a/include/gpg/GpgKeySignature.h
+++ b/include/gpg/GpgKeySignature.h
@@ -54,9 +54,12 @@ struct GpgKeySignature {
explicit GpgKeySignature(gpgme_key_sig_t key_sig);
GpgKeySignature(GpgKeySignature &&) noexcept = default;
+
GpgKeySignature(const GpgKeySignature &) = default;
- GpgKeySignature& operator=(GpgKeySignature &&) noexcept = default;
- GpgKeySignature& operator=(const GpgKeySignature &) = default;
+
+ GpgKeySignature &operator=(GpgKeySignature &&) noexcept = default;
+
+ GpgKeySignature &operator=(const GpgKeySignature &) = default;
};