diff options
author | Saturneric <[email protected]> | 2021-08-11 05:21:57 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-08-11 05:21:57 +0000 |
commit | a5cf56e93e4e6a856b2f21730c7bfbfa413410ff (patch) | |
tree | cdfd1bb9eaf5ba7bfce4a7e4512f371d9d75107d /include/gpg/GpgKeySignature.h | |
parent | Split some source files that are too large. (diff) | |
download | GpgFrontend-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.h | 7 |
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; }; |