diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-10-21 19:31:46 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-10-21 22:54:34 +0200 |
commit | e399c5a602a690126463d1cec62c511f1e053686 (patch) | |
tree | 1fb00f7a6fdd460c037603c727f1d8d052fc2056 /ucb | |
parent | f7a584a592b0e481f974039288da585201c60747 (diff) |
Silence new Clang 10 trunk -std=c++2a -Wambiguous-reversed-operator for now
It is unclear whether this will really be errors in a final C++20 standard, see
<https://github.com/llvm/llvm-project/commit/
974c8b7e2fde550fd87850d50695341101c38c2d> "[c++20] Add rewriting from comparison
operators to <=> / ==" for details.
Change-Id: I3a7c2574a65952c8d255107823a1d1e18b2cbe4c
Reviewed-on: https://gerrit.libreoffice.org/81268
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/cmis/cmis_url.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ucb/source/ucp/cmis/cmis_url.cxx b/ucb/source/ucp/cmis/cmis_url.cxx index 7bca52492a73..b83d6bee316b 100644 --- a/ucb/source/ucp/cmis/cmis_url.cxx +++ b/ucb/source/ucp/cmis/cmis_url.cxx @@ -7,6 +7,8 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#include <sal/config.h> + #if defined __GNUC__ && !defined __clang__ #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wdeprecated" |