diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/30069-class-implementation.cpp')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/30069-class-implementation.cpp | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/30069-class-implementation.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/30069-class-implementation.cpp deleted file mode 100644 index 18481338..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/30069-class-implementation.cpp +++ /dev/null @@ -1,28 +0,0 @@ -template<class T> -class TestTemp -{ -public: -TestTemp(); -void SetValue( T obj_i ); -T Getalue(); -private: -T m_Obj; -}; - -template <class T> -TestTemp<T> -::TestTemp() -{ -} -template <class T> -void TestTemp<T> -::SetValue( T obj_i ) -{ -} - -template <class T> -T TestTemp<T> -::Getalue() -{ - return m_Obj; -} |