tdf#130380 Chart: Fix area chart data labels position
[LibreOffice.git] / external / skia / Wdeprecated-copy-dtor.patch.0
blob710fe9c249d9575a01e4ec37733229a75165805e
1 --- include/gpu/GrDriverBugWorkarounds.h
2 +++ include/gpu/GrDriverBugWorkarounds.h
3 @@ -35,6 +35,7 @@
4   public:
5    GrDriverBugWorkarounds();
6    explicit GrDriverBugWorkarounds(const std::vector<int32_t>& workarounds);
7 +  GrDriverBugWorkarounds(GrDriverBugWorkarounds const &) = default;
8  
9    GrDriverBugWorkarounds& operator=(const GrDriverBugWorkarounds&) = default;
11 --- tools/sk_app/VulkanWindowContext.h
12 +++ tools/sk_app/VulkanWindowContext.h
13 @@ -33,6 +33,8 @@
14          SharedGrContext() {}
15          GrContext* getGrContext() { return shared ? shared->fContext.get() : nullptr; }
16          ~SharedGrContext() { shared.reset(); checkDestroyShared(); }
17 +        SharedGrContext(SharedGrContext const &) = default;
18 +        SharedGrContext & operator =(SharedGrContext const &) = default;
19          bool operator!() const { return !shared; }
20          void reset() { shared.reset(); }
21      private: