summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/30326-indent_off_after_return.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/30326-indent_off_after_return.cpp')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/30326-indent_off_after_return.cpp60
1 files changed, 0 insertions, 60 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/30326-indent_off_after_return.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/30326-indent_off_after_return.cpp
deleted file mode 100644
index 6cd6d8e4..00000000
--- a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/30326-indent_off_after_return.cpp
+++ /dev/null
@@ -1,60 +0,0 @@
-int foo1()
-{
- return std::pair<int, int>{
- 1, 2
- }.first;
-}
-
-int foo2()
-{
- return
- int{3} & 2;
-}
-
-int foo3()
-{
- constexpr static int x = 3;
- return
- decltype(x) {x} & 2;
-}
-
-int foo4()
-{
- return
- new Type();
-}
-
-int foo5()
-{
- return
- veryLongMethodCall(
- arg1,
- longMethodCall(
- methodCall(
- arg2, arg3
- ), arg4
- )
- );
-}
-
-int foo6()
-{
- auto my_lambda = [] ()
- {
- return 1 +
- 2 +
- 3;
-
- };
-}
-
-template<typename U>
-U *
-find(const std::string &name = "") const
-{
- return find<U>([&name] (auto *pComposite)
- {
- return name.empty() ||
- pComposite->getName() == name;
- });
-}