diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30104-templ_class.h')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30104-templ_class.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30104-templ_class.h b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30104-templ_class.h deleted file mode 100644 index 802f7e27..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30104-templ_class.h +++ /dev/null @@ -1,15 +0,0 @@ -template<typename T, template<typename> class SpecialClass> -class Example -{ - // Copy constructor with other variants of Example - template<template<typename> class OtherSpecialClass> - Example(const Example<T, OtherSpecialClass>& other) - { - // do something useful here - } - - /** The normal member var based on the template arguments */ - SpecialClass<T> memberVar; - -}; - |