Skip to main content
added 22 characters in body
Source Link
Uri
  • 90.1k
  • 51
  • 228
  • 325

It's important to understand separate compilation and the possibility of resulting executable blowoutsize increases. If you instantiate the template with the same type in several C++ files, you will get the type reproduced multiple times, at least on some compilers.

It's important to understand separate compilation and the resulting executable blowout. If you instantiate the template with the same type in several C++ files, you will get the type reproduced multiple times, at least on some compilers.

It's important to understand separate compilation and the possibility of resulting executable size increases. If you instantiate the template with the same type in several C++ files, you will get the type reproduced multiple times, at least on some compilers.

Source Link
Uri
  • 90.1k
  • 51
  • 228
  • 325

It's important to understand separate compilation and the resulting executable blowout. If you instantiate the template with the same type in several C++ files, you will get the type reproduced multiple times, at least on some compilers.