diff options
author | David Ostrovsky <david@ostrovsky.org> | 2018-08-22 14:04:56 +0200 |
---|---|---|
committer | David Ostrovsky <david@ostrovsky.org> | 2018-08-22 17:15:54 +0200 |
commit | 6073627ddc50de5d1222c89712c350ef34eaa0e1 (patch) | |
tree | 14966c09207cb6601d86d0d6a4c2e598ff93ca76 /solenv | |
parent | d01839774a2d3709d6be5d8f780fdf9b514b4032 (diff) |
gbuild: Unconditionally compile as C++17 with MSVC 2017
Change-Id: Icb7161bb140cb2ffbf36f56839a2889d9eb2660c
Reviewed-on: https://gerrit.libreoffice.org/59445
Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
Tested-by: Jenkins
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/gbuild/platform/com_MSC_defs.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gbuild/platform/com_MSC_defs.mk b/solenv/gbuild/platform/com_MSC_defs.mk index 538bf2d90d45..0bfb76609cd1 100644 --- a/solenv/gbuild/platform/com_MSC_defs.mk +++ b/solenv/gbuild/platform/com_MSC_defs.mk @@ -167,7 +167,7 @@ endif gb_CXXFLAGS := \ -utf-8 \ - $(if $(filter-out 140,$(VCVER)),-std:c++17) \ + -std:c++17 \ -Gd \ -GR \ -Gs \ |