diff options
author | Ingo Klöcker <[email protected]> | 2022-04-04 11:07:12 +0000 |
---|---|---|
committer | Ingo Klöcker <[email protected]> | 2022-04-05 08:05:43 +0000 |
commit | 4beb6f419954b0df475d88bef7fc8b8065848b75 (patch) | |
tree | 9ef1472a45e61470b920b745fb61547f03022053 | |
parent | core: Don't use internal __assuan functions. (diff) | |
download | gpgme-4beb6f419954b0df475d88bef7fc8b8065848b75.tar.gz gpgme-4beb6f419954b0df475d88bef7fc8b8065848b75.zip |
cpp: Do not export symbols of the Private class
* lang/cpp/src/gpgrevokekeyeditinteractor.h (class
GpgRevokeKeyEditInteractor): Mark nested class Private as hidden.
--
GnuPG-bug-id: 5904
-rw-r--r-- | lang/cpp/src/gpgrevokekeyeditinteractor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/cpp/src/gpgrevokekeyeditinteractor.h b/lang/cpp/src/gpgrevokekeyeditinteractor.h index c64ca015..c33a71b6 100644 --- a/lang/cpp/src/gpgrevokekeyeditinteractor.h +++ b/lang/cpp/src/gpgrevokekeyeditinteractor.h @@ -53,7 +53,7 @@ private: unsigned int nextState(unsigned int statusCode, const char *args, Error &err) const override; private: - class Private; + class GPGMEPP_NO_EXPORT Private; const std::unique_ptr<Private> d; }; |