From: Hermet Park Date: Fri, 22 Oct 2021 10:09:25 +0000 (+0900) Subject: api: not allow the inheritance of the Saver. X-Git-Tag: accepted/tizen/unified/20211102.024808~42 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=319a6d92455c0e6fee77cad82303a0faa3050783;p=platform%2Fcore%2Fgraphics%2Ftizenvg.git api: not allow the inheritance of the Saver. We missed the final keyword for the Saver, This inheritance is out of our policy. It might be break apis but Saver class is just opened, and we're pretty sure that there is no any extension of this. I know this is the bad decision, but we have a chance yet, so we must correct it before further late. --- diff --git a/inc/thorvg.h b/inc/thorvg.h index bc9e05e..c899f1b 100644 --- a/inc/thorvg.h +++ b/inc/thorvg.h @@ -1483,7 +1483,7 @@ public: * * @since 0.5 */ -class TVG_EXPORT Saver +class TVG_EXPORT Saver final { public: ~Saver();