Search code examples
c++c++11constructorinlineconstructor-inheritance

How to inherit constructors out-of-line?


Is it possible to inherit constructors out-of-line in C++ so that they don't (say) get codegened in every translation unit? If so, how?


Solution

  • Apparently this isn't possible.