summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/34179-arith_vs_byref.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/34179-arith_vs_byref.cpp')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/34179-arith_vs_byref.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/34179-arith_vs_byref.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/34179-arith_vs_byref.cpp
deleted file mode 100644
index f459fdcc..00000000
--- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/34179-arith_vs_byref.cpp
+++ /dev/null
@@ -1,10 +0,0 @@
-A a = {this->r & cos(b)};
-
-B b1 = {0x0000'1111 & this->r};
-B b2 = {this->r & 0x0000'1111};
-B b3 = {0x0000'1111 & value};
-B b4 = {value & 0x0000'1111};
-
-auto p = std::make_pair(r & cos(a), r & sin(a));
-
-auto p2 = std::make_pair(r & 0x0000'1111, 0x0000'1111 & r);