/* -*- 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 class Class1 { OUString const m_field1; // expected-note {{field here [loplugin:conststringfield]}} Class1() : m_field1("xxxx") // expected-error@-1 {{string field can be static const [loplugin:conststringfield]}} { (void)m_field1; } }; class Class2 { OString const m_field1; // expected-note {{field here [loplugin:conststringfield]}} Class2() : m_field1("xxxx") // expected-error@-1 {{string field can be static const [loplugin:conststringfield]}} { (void)m_field1; } }; // no warning expected class Class4 { OUString m_field1; Class4() : m_field1("xxxx") { (void)m_field1; } }; /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ ion value='distro/capgemini/cg-4.1'>distro/capgemini/cg-4.1 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2017-04-25tools: svstream.hxx needs only errcode.hxx & not errinf.hxxChris Sherlock
2015-03-29vcl: cleanup pngreader, use unique_ptr for pImplTomaž Vajngerl
2014-03-01Remove visual noise from includeAlexander Wilms