summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/31605-parameter-packs.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-11-18 22:24:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-11-18 22:24:33 +0900
commit3b0c3b8206964b85bf3716c962d26dd15c4f285f (patch)
tree2f0973dbf96c2892d19a55b6f846f130e7399a48 /debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/31605-parameter-packs.cpp
parentff287d2f48d4f4253bf84f19bd7fe937b61ede45 (diff)
downloadextra-dependencies-3b0c3b8206964b85bf3716c962d26dd15c4f285f.tar.gz
extra-dependencies-3b0c3b8206964b85bf3716c962d26dd15c4f285f.zip
Remove uncrustify-trinity.HEADmaster
It is no longer necessary to maintain a customize trinity version. Upstream version can be used as is. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/31605-parameter-packs.cpp')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/31605-parameter-packs.cpp77
1 files changed, 0 insertions, 77 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/31605-parameter-packs.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/31605-parameter-packs.cpp
deleted file mode 100644
index a08af3cf..00000000
--- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/31605-parameter-packs.cpp
+++ /dev/null
@@ -1,77 +0,0 @@
-template<typename... A, int... B>
-struct foo1 : foo1<A..., (sizeof...(A)+B)...>
-{
- foo1() {
- int x = sizeof...(A);
- }
-};
-
-template<int... X> int bar1()
-{
- auto s = sizeof...(X);
- chomp(X)...;
- return X+...;
-}
-
-template<class R, typename... Args>
-void call1v(R (*fp)(Args...));
-
-template<class R, typename... Args>
-void call1p(R (*fp)(Args*...));
-
-template<class R, typename... Args>
-void call1r(R (*fp)(Args && ...));
-
-template<class R, typename... Args>
-struct invoke1v : invoke<R (*)(Args...)>
-{
-};
-
-template<class R, typename... Args>
-struct invoke1p : invoke<R (*)(Args*...)>
-{
-};
-
-template<class R, typename... Args>
-struct invoke1r : invoke<R (*)(Args && ...)>
-{
-};
-
-template < typename... A, int ... B >
-struct foo2 : foo2 < A ..., ( sizeof ... ( A ) + B ) ... >
-{
- foo2() {
- int x = sizeof ... ( A );
- }
-};
-
-template < int ... X > int bar2()
-{
- auto s = sizeof ... ( X );
- chomp( X ) ...;
- return X + ...;
-}
-
-template < class R, typename... Args >
-void call2v( R ( *fp ) ( Args... ) );
-
-template < class R, typename... Args >
-void call2p( R ( *fp ) ( Args * ... ) );
-
-template < class R, typename... Args >
-void call2r( R ( *fp ) ( Args && ... ) );
-
-template < class R, typename... Args >
-struct invoke2v : invoke < R ( * ) ( Args... ) >
-{
-};
-
-template < class R, typename... Args >
-struct invoke2p : invoke < R ( * ) ( Args * ... ) >
-{
-};
-
-template < class R, typename... Args >
-struct invoke2r : invoke < R ( * ) ( Args && ... ) >
-{
-};