diff options
author | Pragat Pandya <pragat.pandya@gmail.com> | 2022-05-08 23:56:45 +0530 |
---|---|---|
committer | Bartosz Kosiorek <gang65@poczta.onet.pl> | 2022-05-09 20:42:03 +0200 |
commit | 6abc09926c9b55a445b906303f56c6ec7fdeabf9 (patch) | |
tree | 0dda52e9d57325cc510acfa4d8951e60c84e7409 /binaryurp | |
parent | 0c3950c4954848fde1515a932cc16b38ab961a7d (diff) |
tdf#147021 Use std::size() instead of SAL_N_ELEMENTS() macro
Change-Id: I54257e87da0cd66da59d820c7960c3e4b020fda3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134027
Reviewed-by: Bartosz Kosiorek <gang65@poczta.onet.pl>
Tested-by: Jenkins
Diffstat (limited to 'binaryurp')
-rw-r--r-- | binaryurp/source/bridge.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binaryurp/source/bridge.cxx b/binaryurp/source/bridge.cxx index 050ebec7403c..d06e7d29f31a 100644 --- a/binaryurp/source/bridge.cxx +++ b/binaryurp/source/bridge.cxx @@ -991,7 +991,7 @@ void Bridge::makeReleaseCall( // its own: static auto const tid = [] { static sal_Int8 const id[] = {'r', 'e', 'l', 'e', 'a', 's', 'e', 'h', 'a', 'c', 'k'}; - return rtl::ByteSequence(id, SAL_N_ELEMENTS(id)); + return rtl::ByteSequence(id, std::size(id)); }(); sendRequest( tid, oid, type, |