Skip to content

Extern template

David Gobbi requested to merge dgobbi/vtk:extern-template into master

For C++11 (and for some pre-C++11 compilers via extensions) a template instantiation can be declared "extern" so that the compiler will avoid generating more than one copy of the code for that template. This commit is an attempt to simplify the use of "extern template" in VTK.

Merge request reports