Version 6.1.0.2, tag libreoffice-6.1.0.2
[LibreOffice.git] / compilerplugins / clang / test / simplifybool.cxx
blob2cb2e810c1106ce03af815623abf7fd42e2f723e
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 void f1(int a, int b)
12 if (!(a < b))
13 { // expected-error@-1 {{logical negation of comparison operator, can be simplified by inverting operator [loplugin:simplifybool]}}
14 a = b;
18 void f2(float a, float b)
20 // no warning expected
21 if (!(a < b))
23 a = b;
27 // Consistently either warn about all or none of the below occurrences of "!!":
29 enum E1
31 E1_1 = 1
34 enum E2
36 E2_1 = 1
38 E2 operator&(E2 e1, E2 e2);
39 bool operator!(E2 e);
41 enum class E3
43 E1 = 1
45 struct W
47 operator bool();
49 W operator&(E3 e1, E3 e2);
51 bool f0(int n) { return !!(n & 1); }
53 bool f1(E1 e) { return !!(e & E1_1); }
55 bool f2(E2 e) { return !!(e & E2_1); }
57 bool f3(E3 e) { return !!(e & E3::E1); }
59 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */