Is there a way to see the compiler-instantiated code for a function template or a class template in C++?
Assume I have the following piece of code:
template <class T> T add(T a, T b) {
return a + b;
}
When I call:
add<int>(10, 2);
... I would like to see the function that the compiler creates for the int
template specialization.
I am using g++, VC++, and need to know the compiler options to achieve this.