Adding template specialization handling

This commit is contained in:
Bartek Kryza
2021-05-03 15:47:02 +02:00
parent cff012ab7b
commit d3b6f1ca13
3 changed files with 29 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
namespace clanguml {
namespace t00016 {
template <typename> struct is_numeric {
template <typename T> struct is_numeric {
enum { value = false };
};