modernize-pass-by-valueWith move semantics added to the language and the standard library updated with move constructors added for many types it is now interesting to take an argument directly by value, instead of by const-reference, and then copy. This check allows the compiler to take care of choosing the best way to construct the copy.언어에 이동 의미론(move semantics)이 추가되고많은 타입에 대한 이동 생성자(move cons..