data: template arguments default parameters

* implemented parsing of template argument default parameters.
* added tests for default arguments of template parameters.

fortune cookie message = If you continually give, you will continually have.
This commit is contained in:
malte_langkabel
2015-02-03 16:22:48 +01:00
parent 799f324463
commit bdcca6dbad
10 changed files with 96 additions and 37 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
template <typename T, typename U>
template <typename T = int, typename U = int>
class TemplateTestClass
{
};