I have a file that contains the following:
#include
When comp
In C++, if a template argument has limited visibility, this restriction is implicitly propagated to the template instantiation.
#include
should do the job.
-- edit --
One more thing, `#pragma GCC visibility' affects only namespace-scope declarations. Class members and template specializations are not affected (Visibility pragmas)