summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-11-06 14:33:26 +0200
committerTor Lillqvist <tml@collabora.com>2014-11-06 14:33:38 +0200
commit03977c451acd3aadf2509397dc8224bd80ce419b (patch)
treed481f0cf207ff507e83791eaf4d1083c5d3a516d /sc
parentb800d0b6ad74ce4a9adb23b865dd174d1eefa47b (diff)
Don't be too modern for MSVC2012
Change-Id: Ibdee512a330d4520a32a56d2f1703dc2eab4981f
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/tool/calcconfig.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/sc/source/core/tool/calcconfig.cxx b/sc/source/core/tool/calcconfig.cxx
index 7cb995fd4f5d..a56d2fa06d7a 100644
--- a/sc/source/core/tool/calcconfig.cxx
+++ b/sc/source/core/tool/calcconfig.cxx
@@ -42,10 +42,8 @@ void ScCalcConfig::setOpenCLConfigToDefault()
maOpenCLSubsetOpCodes.insert(ocSum);
maOpenCLSubsetOpCodes.insert(ocAverage);
maOpenCLSubsetOpCodes.insert(ocSumIfs);
- maOpenCLBlackList = {
- "Windows/*/Intel(R) Corporation/9.17.10.2884",
- "SuperOS/1.0/Big Corp, Inc./2.3\\/beta"
- };
+ maOpenCLBlackList.insert("Windows/*/Intel(R) Corporation/9.17.10.2884");
+ maOpenCLBlackList.insert("SuperOS/1.0/Big Corp, Inc./2.3\\/beta");
}
void ScCalcConfig::reset()