Hi
If I have a function:
std::vector<int my_rbv()
{
std::vector<int x;
// some stuff
return x;
}
will the returned vector arrive on the stack when this function gets called?
Thanks,
NL
If I have a function:
std::vector<int my_rbv()
{
std::vector<int x;
// some stuff
return x;
}
will the returned vector arrive on the stack when this function gets called?
Thanks,
NL
Comment