diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-04-13 10:56:37 +0100 |
---|---|---|
committer | Aron Budea <aron.budea@collabora.com> | 2024-05-08 08:12:59 +0200 |
commit | da60a27ac06ddc1c51a5eec5e8bc5c4f6e3b6f80 (patch) | |
tree | a707cab3f24e0ddc03ea70c3c8ccc0f320bcd67a | |
parent | ad9e4e1869c109fb7821fb9a7ec1eb957891c8bd (diff) |
Related: tdf#160056 all maTokens are FormulaTypedDoubleToken*
Change-Id: I6eacaf58c25ef9c5cb930a79177471c79a6a26c0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166047
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
(cherry picked from commit adbbe732e7ed7f3a749e04f1d9023989c972ec22)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166299
Reviewed-by: Eike Rathke <erack@redhat.com>
(cherry picked from commit bc7198d47b4d1aef7a346c3f939122c9c764eeda)
-rw-r--r-- | sc/inc/interpretercontext.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/interpretercontext.hxx b/sc/inc/interpretercontext.hxx index 5b3a85ab24d9..c43e9c0b6892 100644 --- a/sc/inc/interpretercontext.hxx +++ b/sc/inc/interpretercontext.hxx @@ -19,7 +19,7 @@ namespace formula { -class FormulaToken; +class FormulaTypedDoubleToken; } #define TOKEN_CACHE_SIZE 8 @@ -44,7 +44,7 @@ struct ScInterpreterContext { const ScDocument* mpDoc; size_t mnTokenCachePos; - std::vector<formula::FormulaToken*> maTokens; + std::vector<formula::FormulaTypedDoubleToken*> maTokens; std::vector<DelayedSetNumberFormat> maDelayedSetNumberFormat; std::unique_ptr<ScLookupCacheMap> mxScLookupCache; // cache for lookups like VLOOKUP and MATCH // Allocation cache for "aConditions" array in ScInterpreter::IterateParameterIfs() |