From 414ffac4b742dc3a1696deb3117ef1383fc8d9be Mon Sep 17 00:00:00 2001 From: Markus Handell Date: Fri, 3 Nov 2023 00:14:48 +0100 Subject: [PATCH] Add RTC_EXPORT for Voucher::ScopedSetter and Voucher::Attachment. Bug: chromium:1498378 Change-Id: I606079411c71ac46cc5d261a86f6a11c473d1278 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/325960 Reviewed-by: Mirko Bonadei Commit-Queue: Mirko Bonadei Cr-Commit-Position: refs/heads/main@{#41071} --- rtc_base/voucher.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtc_base/voucher.h b/rtc_base/voucher.h index 30a6460906..1a82551b74 100644 --- a/rtc_base/voucher.h +++ b/rtc_base/voucher.h @@ -32,7 +32,7 @@ class RTC_EXPORT Voucher { // Vouchers aggregate attachments, which are application-specific attachments // that have logic unrelated to the mechanics of Voucher progression. - class Attachment { + class RTC_EXPORT Attachment { public: using Id = size_t; @@ -45,7 +45,7 @@ class RTC_EXPORT Voucher { // Scoped setter that saves the current voucher on stack and instates a new // one, until the scope exits. - class ScopedSetter { + class RTC_EXPORT ScopedSetter { public: explicit ScopedSetter(Ptr voucher); ~ScopedSetter();