Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 814914cd authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 6382

* changes:
  add a virtual destructor to region_rasterizer, to be on the safe side
parents 349dba33 7c5252ed
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -62,6 +62,8 @@ public:
    class region_rasterizer {
        friend class region_operator;
        virtual void operator()(const RECT& rect) = 0;
    public:
        virtual ~region_rasterizer() { };
    };
    
    inline region_operator(int op, const region& lhs, const region& rhs)