[Libreoffice-commits] core.git: Branch 'libreoffice-6-4' - sc/source
Stephan Bergmann (via logerrit)
logerrit at kemper.freedesktop.org
Sun May 17 20:48:00 UTC 2020
sc/source/core/opencl/formulagroupcl.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 080dc8a2950261ea7d6cf69aff997b4fcc424fef
Author: Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Fri Dec 6 16:59:34 2019 +0100
Commit: Tor Lillqvist <tml at collabora.com>
CommitDate: Sun May 17 22:47:29 2020 +0200
loplugin:implicitboolconversion
...in non-dependent templated code that Clang trunk now apparently processes
more aggressively, presumably since <https://github.com/llvm/llvm-project/
commit/878a24ee244a24c39d1c57e9af2e88c621f7cce9> "Reapply 'Fix crash on switch
conditions of non-integer types in templates'"
Change-Id: I561d046c736b4e9574565c01daf0f59e7d5ec414
Reviewed-on: https://gerrit.libreoffice.org/84656
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93696
Reviewed-by: Tor Lillqvist <tml at collabora.com>
diff --git a/sc/source/core/opencl/formulagroupcl.cxx b/sc/source/core/opencl/formulagroupcl.cxx
index 27f3d2674ab7..f126311d5bf3 100644
--- a/sc/source/core/opencl/formulagroupcl.cxx
+++ b/sc/source/core/opencl/formulagroupcl.cxx
@@ -1204,9 +1204,9 @@ public:
size_t GetWindowSize() const { return mpDVR->GetRefRowSize(); }
- size_t GetStartFixed() const { return bIsStartFixed; }
+ bool GetStartFixed() const { return bIsStartFixed; }
- size_t GetEndFixed() const { return bIsEndFixed; }
+ bool GetEndFixed() const { return bIsEndFixed; }
protected:
bool bIsStartFixed, bIsEndFixed;
More information about the Libreoffice-commits
mailing list