Cpp_Primer_Answers icon indicating copy to clipboard operation
Cpp_Primer_Answers copied to clipboard

练习13.50有错误

Open MATRIXKOO opened this issue 5 years ago • 0 comments

应该只有一个地方避免了拷贝

Mystring baz()
{
	Mystring ret("world");
	return ret; // avoided
}

MATRIXKOO avatar Dec 10 '19 13:12 MATRIXKOO