StaticString::StaticString(StaticString&& _str)

{

_data = _str._data;

_str._data = nullptr;

}


이동생성자인데 어떤게 불충분한 걸까요. 도무지 모르겠어요. noexcept를 써야하나요?