From 3b0c3b8206964b85bf3716c962d26dd15c4f285f Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 18 Nov 2024 22:24:33 +0900 Subject: Remove uncrustify-trinity. It is no longer necessary to maintain a customize trinity version. Upstream version can be used as is. Signed-off-by: Michele Calgaro --- .../tests/input/cpp/class-init.cpp | 62 ---------------------- 1 file changed, 62 deletions(-) delete mode 100644 debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/cpp/class-init.cpp (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/cpp/class-init.cpp') diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/cpp/class-init.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/cpp/class-init.cpp deleted file mode 100644 index af06e31a..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/cpp/class-init.cpp +++ /dev/null @@ -1,62 +0,0 @@ - -class Foo : public Bar -{ - -}; - -#define CTOR(i, _) : T(X()), \ - y() \ -{ } - -class Foo2 : -public Bar -{ - -}; - -class GLOX_API ClientBase : public Class, public OtherClass, - public ThridClass, public ForthClass - { -public: - ClientBase(const ClientBase & f){ - // do something - } - }; - -ClientBase :: ClientBase (const std::string& ns, - const std::string& ns1, - const std::string& ns2) -{ - -} - -Foo::Foo(int bar) : someVar(bar), othervar(0) -{ -} - -Foo::Foo(int bar) : someVar(bar), - othervar(0) -{ -} - -Foo::Foo(int bar) -: someVar(bar), othervar(0) -{ -} - -Foo::Foo(int bar) : -someVar(bar), othervar(0) -{ -} - -Foo::Foo(int bar) : -someVar(bar), - othervar(0) -{ -} - -Foo::Foo(int bar) -: someVar(bar), - othervar(0) -{ -} -- cgit v1.2.1