/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include #include #include struct SAL_WARN_UNUSED Point { }; struct SAL_WARN_UNUSED Rectangle { Rectangle(); Rectangle(int width, int height); Rectangle& Union(const Rectangle&) { return *this; } Rectangle& Intersection(const Rectangle&); Rectangle& operator+=(const Point& rPt); }; void func1() { Rectangle aTmp1; // expected-error {{unused variable 'aTmp1' [loplugin:unusedvariablemore]}} aTmp1.Union(Rectangle(10, 10)); } void func2() { Rectangle aViewArea( 10, 10); // expected-error@-1 {{unused variable 'aViewArea' [loplugin:unusedvariablemore]}} aViewArea += Point(); aViewArea.Intersection(Rectangle(0, 0)); } //--------------------------------------------------------------------- // Negative tests //--------------------------------------------------------------------- Rectangle func3(const Rectangle& rRect) { Rectangle aTmpRect(Rectangle(10, 10)); return aTmpRect.Union(rRect); } void func4() { std::map aMimeTypeMap; aMimeTypeMap[1] = 0; int aExportMimeType(aMimeTypeMap[0]); (void)aExportMimeType; } /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ office-5-4 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2024-07-11update tsan suppressionsNoel Grandin
2024-07-10add more tsan suppressionNoel Grandin
2024-07-10add more tsan suppressionsNoel Grandin
2023-12-06update tsan suppressionsNoel Grandin
2023-10-30update tsan-suppressNoel Grandin
2023-08-28fix duplicate I introduced to tsan-suppressNoel Grandin
2023-08-26Fix typoAndrea Gelmini
2023-08-25update tsan suppressNoel Grandin
2023-01-30update TSAN suppressionsNoel Grandin
2022-09-02add more tsan supressNoel Grandin
2022-08-11update tsan suppressionNoel Grandin
2022-03-01more tsan suppressionsNoel Grandin
2022-03-01tsan more suppressionNoel Grandin
2021-08-05more TSAN suppressionsNoel Grandin
2021-08-03Fix typosAndrea Gelmini
2021-08-02more suppressions for TSANNoel Grandin
2021-07-30TSAN suppression fileNoel Grandin