diff options
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/types.hxx | 1 | ||||
-rw-r--r-- | sc/source/core/data/formulacell.cxx | 3 | ||||
-rw-r--r-- | sc/source/core/tool/token.cxx | 1 |
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; |