diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2021-04-09 15:28:18 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2021-04-09 17:01:10 +0200 |
commit | d5f88932b60b79a8a677583f70c16d600c159935 (patch) | |
tree | 8e03cfe9785af9ed6d1d64f02557684b57cb0c57 /vcl/win | |
parent | c9c1c113cc5ae908ef6d0a008372d512b335586a (diff) |
loplugin:noexceptmove (clang-cl)
Change-Id: I55f5c725ac65058f5424f472cb71a84c9e3322f4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113873
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl/win')
-rw-r--r-- | vcl/win/gdi/winlayout.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/win/gdi/winlayout.cxx b/vcl/win/gdi/winlayout.cxx index a246ae7096c1..0f82d1af5bc6 100644 --- a/vcl/win/gdi/winlayout.cxx +++ b/vcl/win/gdi/winlayout.cxx @@ -186,7 +186,7 @@ struct BlobReference { hb_blob_reference(mpBlob); } - BlobReference(BlobReference&& other) + BlobReference(BlobReference&& other) noexcept : mpBlob(other.mpBlob) { other.mpBlob = nullptr; |