summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/calcconfig.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/sc/inc/calcconfig.hxx b/sc/inc/calcconfig.hxx
index e271421b6884..1d28a60f93a7 100644
--- a/sc/inc/calcconfig.hxx
+++ b/sc/inc/calcconfig.hxx
@@ -12,6 +12,7 @@
#include "scdllapi.h"
+#include <memory>
#include <ostream>
#include <set>
@@ -50,9 +51,9 @@ struct SC_DLLPUBLIC ScCalcConfig
OUString maOpenCLDevice;
sal_Int32 mnOpenCLMinimumFormulaGroupSize;
- typedef std::set<OpCode> OpCodeSet;
+ typedef std::shared_ptr<std::set<OpCode>> OpCodeSet;
- OpCodeSet maOpenCLSubsetOpCodes;
+ OpCodeSet mpOpenCLSubsetOpCodes;
ScCalcConfig();