diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-11-01 17:07:57 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-11-02 10:14:19 +0100 |
commit | cd472d1d8489f30797f47d3f6dafede28c1feb90 (patch) | |
tree | 70a07dff0256ee0089d2024a7500cb92f02f4946 /external | |
parent | 88657bf4bed6754c182b08a442d8582a7ad30ece (diff) |
Compile as C++2a, where available
Change-Id: I6382be559a0c70d899d48d11e6f9b10ef270c9a4
Reviewed-on: https://gerrit.libreoffice.org/62744
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'external')
-rw-r--r-- | external/libcmis/StaticLibrary_libcmis.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/external/libcmis/StaticLibrary_libcmis.mk b/external/libcmis/StaticLibrary_libcmis.mk index 652ece120a35..94bd7fbcac4a 100644 --- a/external/libcmis/StaticLibrary_libcmis.mk +++ b/external/libcmis/StaticLibrary_libcmis.mk @@ -17,7 +17,7 @@ ifeq ($(COM_IS_CLANG),TRUE) # Also avoid -Wdynamic-exception-spec errors in C++17 mode. $(eval $(call gb_StaticLibrary_add_cxxflags,libcmis,\ -Wno-error=c++11-narrowing \ - $(if $(filter -std=gnu++17 -std=gnu++1z -std=c++17 -std=c++1z, \ + $(if $(filter -std=gnu++2a -std=c++2a -std=gnu++17 -std=gnu++1z -std=c++17 -std=c++1z, \ $(CXXFLAGS_CXX11)), \ -Wno-error=dynamic-exception-spec) \ )) |