summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/store/test
diff options
context:
space:
mode:
authorPhilipp Hofer <philipp.hofer@protonmail.com>2020-11-12 12:51:50 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2020-11-22 01:56:05 +0100
commitc096ab87c8a11e8d75dc689ea7024288419cfd22 (patch)
treecbf5e56d19dcb3fd3e68db3688f88d985c950a80 /compilerplugins/clang/store/test
parentb35232bdf56fbda34476cf537d53bbea31235a95 (diff)
tdf#123936 Formatting files in module compilerplugins with clang-format
Change-Id: Ie6e23d3d2a20849e47d048b439d72fd7376c53db Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105654 Tested-by: Jenkins Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'compilerplugins/clang/store/test')
-rw-r--r--compilerplugins/clang/store/test/deadclass.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/compilerplugins/clang/store/test/deadclass.cxx b/compilerplugins/clang/store/test/deadclass.cxx
index d8b9cdb60889..ffae241d4285 100644
--- a/compilerplugins/clang/store/test/deadclass.cxx
+++ b/compilerplugins/clang/store/test/deadclass.cxx
@@ -7,7 +7,8 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
-struct Foo { // expected-error {{class has only copy/move constructors, must be dead [loplugin:deadclass]}}
+struct Foo
+{ // expected-error {{class has only copy/move constructors, must be dead [loplugin:deadclass]}}
Foo(Foo&);
};