1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
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/.
13 { // expected-error@-1 {{logical negation of comparison operator, can be simplified by inverting operator [loplugin:simplifybool]}}
18 void f2(float a
, float b
)
20 // no warning expected
27 // Consistently either warn about all or none of the below occurrences of "!!":
38 E2
operator&(E2 e1
, E2 e2
);
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: */