struct foo
{
void write()
{
//dosomething
}
};
Vs
struct foo
{
};
Inline void write(foo&)
{
//dosomething
}
Which one compiles faster?
My guess is that the first one compiles faster since it is more context free
compared to 2nd one.
Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10
