summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-11-24 20:34:04 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-11-25 08:25:12 +0100
commite1cbd518118a5f2889213e5725e0e0a3c133de5d (patch)
tree032894ff56cbe0dfa91fd9e6a15bbb87032adc8e /sc
parent85f129b59ca690ba519cdbbdb4219fddc3e90098 (diff)
drop unused FormulaVectorDisabledNotInSoftwareSubset
Change-Id: I6d9b43ce6c72ff876b48bfba4b6de09ed46fd809 Reviewed-on: https://gerrit.libreoffice.org/63946 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/types.hxx1
-rw-r--r--sc/source/core/data/formulacell.cxx3
-rw-r--r--sc/source/core/tool/token.cxx1
3 files changed, 0 insertions, 5 deletions
diff --git a/sc/inc/types.hxx b/sc/inc/types.hxx
index 995f715c37c3..2cfcb00eab21 100644
--- a/sc/inc/types.hxx
+++ b/sc/inc/types.hxx
@@ -53,7 +53,6 @@ enum ScFormulaVectorState
{
FormulaVectorDisabled,
FormulaVectorDisabledNotInSubSet,
- FormulaVectorDisabledNotInSoftwareSubset,
FormulaVectorDisabledByOpCode,
FormulaVectorDisabledByStackVariable,
diff --git a/sc/source/core/data/formulacell.cxx b/sc/source/core/data/formulacell.cxx
index 5b20269528a4..aadb8e11b4d0 100644
--- a/sc/source/core/data/formulacell.cxx
+++ b/sc/source/core/data/formulacell.cxx
@@ -4732,9 +4732,6 @@ bool ScFormulaCell::InterpretFormulaGroupOpenCL(sc::FormulaLogger::GroupScope& a
case FormulaVectorDisabledByOpCode:
aScope.addMessage("group calc disabled due to vector state (non-vector-supporting opcode)");
break;
- case FormulaVectorDisabledNotInSoftwareSubset:
- aScope.addMessage("group calc disabled due to vector state (opcode not in software subset)");
- break;
case FormulaVectorDisabledByStackVariable:
aScope.addMessage("group calc disabled due to vector state (non-vector-supporting stack variable)");
break;
diff --git a/sc/source/core/tool/token.cxx b/sc/source/core/tool/token.cxx
index 474730050d72..12e692825b07 100644
--- a/sc/source/core/tool/token.cxx
+++ b/sc/source/core/tool/token.cxx
@@ -1804,7 +1804,6 @@ bool ScTokenArray::IsFormulaVectorDisabled() const
{
case FormulaVectorDisabled:
case FormulaVectorDisabledByOpCode:
- case FormulaVectorDisabledNotInSoftwareSubset:
case FormulaVectorDisabledByStackVariable:
case FormulaVectorDisabledNotInSubSet:
return true;