diff options
Diffstat (limited to 'tests/headers/issue-1113-template-references.hpp')
-rw-r--r-- | tests/headers/issue-1113-template-references.hpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/headers/issue-1113-template-references.hpp b/tests/headers/issue-1113-template-references.hpp deleted file mode 100644 index 46339c5d..00000000 --- a/tests/headers/issue-1113-template-references.hpp +++ /dev/null @@ -1,16 +0,0 @@ -template<class K, class V> -class Entry : public K -{ - V mData; -}; - -template<typename K, typename V> -class nsBaseHashtable { - typedef Entry<K, V> EntryType; - - struct EntryPtr { - private: - EntryType& mEntry; - bool mExistingEntry; - }; -}; |