From 4beb6f419954b0df475d88bef7fc8b8065848b75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingo=20Kl=C3=B6cker?= Date: Mon, 4 Apr 2022 13:07:12 +0200 Subject: [PATCH] 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 --- lang/cpp/src/gpgrevokekeyeditinteractor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 d; };