I've been digging through the source code of an API and I noticed lack of usage of initialization lists, which was instead moved to the constructor body. I thought this is suboptimal but then noticed that those constructors are inline.
So is there some limitation when using initialization lists with inline constructors? 10x