Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++ Template tracker

Tags:

c++

templates

Eee... I don't even know if the name I am calling this is correct or not... but I am wondering if there is a template tracker for C++ out there somewhere. The functionality of it would be similar to the GCC compilers' -E switch (which expands all the macros), the only difference is that it would show the same thing for templates, such as which classes have been created, together with partial specializations, source code, which templated method are called, template parameter deduction, etc...

like image 363
Ferenc Deak Avatar asked Apr 07 '14 09:04

Ferenc Deak


1 Answers

There is Templight, which makes it possible to trace template instantiations.

like image 200
Fabio Fracassi Avatar answered Nov 15 '22 03:11

Fabio Fracassi