diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/60071-Issue_3428.cpp')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/60071-Issue_3428.cpp | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/60071-Issue_3428.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/60071-Issue_3428.cpp deleted file mode 100644 index bf1dc20b..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/60071-Issue_3428.cpp +++ /dev/null @@ -1,57 +0,0 @@ -void main()
-{
- if(aaaa)
- {
- it = std::find_if(
- bbbb.begin(),
- bbbb.end(),
- [&cccc](const auto& dddd)
- {
- return (eeee.ffff == iiii && !jjjj.kkkk);
- }
- );
- }
-}
-
-namespace ns1 {
-
-void one()
-{
- if(aaaa)
- {
- it = std::find_if(
- bbbb.begin(),
- bbbb.end(),
- [&cccc](const auto& dddd)
- {
- return (eeee.ffff == iiii && !jjjj.kkkk);
- }
- );
- }
-}
-
-namespace ns2 {
-namespace ns3 {
-const auto lamb = []() -> int
-{
- return 42;
-};
-
-void two()
-{
- if(aaaa)
- {
- it = std::find_if(
- bbbb.begin(),
- bbbb.end(),
- [&cccc](const auto& dddd)
- {
- return (eeee.ffff == iiii && !jjjj.kkkk);
- }
- );
- }
-}
-
-}
-}
-}
|