From 15f05443d0b84d58f1c2ac504609e7e6fac31228 Mon Sep 17 00:00:00 2001 From: reuk Date: Tue, 3 Jun 2025 11:58:59 +0100 Subject: [PATCH] Graphics: Add missing JUCE_API annotation to ScopedSaveState --- modules/juce_graphics/contexts/juce_GraphicsContext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_graphics/contexts/juce_GraphicsContext.h b/modules/juce_graphics/contexts/juce_GraphicsContext.h index 7aa57a7bfc..15ed4fbb20 100644 --- a/modules/juce_graphics/contexts/juce_GraphicsContext.h +++ b/modules/juce_graphics/contexts/juce_GraphicsContext.h @@ -667,7 +667,7 @@ public: On construction, this calls Graphics::saveState(), and on destruction it calls Graphics::restoreState() on the Graphics object that you supply. */ - class ScopedSaveState + class JUCE_API ScopedSaveState { public: ScopedSaveState (Graphics&);