std::map 레퍼런스 리턴한다고 했을때


auto GetMap() const -> const std::map<int, int> &

{

return m_map;

}


근데 이러니까 코드만 길어지고 딱히 장점이 없는거 같은데


가독성 떄문에 그런거?