2018-08-16 16:57:15 +02:00
|
|
|
/* -*- 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 <rtl/ustring.hxx>
|
|
|
|
#include <rtl/string.hxx>
|
|
|
|
|
|
|
|
class Class1
|
|
|
|
{
|
2018-09-13 15:07:13 +02:00
|
|
|
OUString const m_field1; // expected-note {{field here [loplugin:staticconstfield]}}
|
2018-08-16 16:57:15 +02:00
|
|
|
Class1()
|
|
|
|
: m_field1("xxxx")
|
2018-09-13 15:07:13 +02:00
|
|
|
// expected-error@-1 {{string field can be static const [loplugin:staticconstfield]}}
|
2018-08-16 16:57:15 +02:00
|
|
|
{
|
2018-08-23 08:50:43 +02:00
|
|
|
(void)m_field1;
|
2018-08-16 16:57:15 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class Class2
|
|
|
|
{
|
2018-09-13 15:07:13 +02:00
|
|
|
OString const m_field1; // expected-note {{field here [loplugin:staticconstfield]}}
|
2018-08-16 16:57:15 +02:00
|
|
|
Class2()
|
|
|
|
: m_field1("xxxx")
|
2018-09-13 15:07:13 +02:00
|
|
|
// expected-error@-1 {{string field can be static const [loplugin:staticconstfield]}}
|
2018-08-16 16:57:15 +02:00
|
|
|
{
|
2018-08-23 08:50:43 +02:00
|
|
|
(void)m_field1;
|
2018-08-16 16:57:15 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// no warning expected
|
|
|
|
class Class4
|
|
|
|
{
|
|
|
|
OUString m_field1;
|
|
|
|
Class4()
|
|
|
|
: m_field1("xxxx")
|
|
|
|
{
|
2018-08-23 08:50:43 +02:00
|
|
|
(void)m_field1;
|
2018-08-16 16:57:15 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
|