<table border="1" cellspacing="0" cellpadding="8">
    <tr>
        <th>Issue</th>
        <td>
            <a href=https://github.com/llvm/llvm-project/issues/133734>133734</a>
        </td>
    </tr>

    <tr>
        <th>Summary</th>
        <td>
            [clang-tidy] Check for uncessary copies as return value for getter functions
        </td>
    </tr>

    <tr>
      <th>Labels</th>
      <td>
            clang-tidy
      </td>
    </tr>

    <tr>
      <th>Assignees</th>
      <td>
      </td>
    </tr>

    <tr>
      <th>Reporter</th>
      <td>
          ArnaudBienner
      </td>
    </tr>
</table>

<pre>
    The following code:
```
std::string GetValue() const { return mValue; }
```
(with `mValue` being a `std::string` member)

is not optimal since it might perform an unnecessary copy of the string object, which might not be needed.

The following code would be best:
```
const std::string& GetValue() const { return mValue; }
```

Similar to performance-unnecessary-value-param[ΒΆ](https://clang.llvm.org/extra/clang-tidy/checks/performance/unnecessary-value-param.html#performance-unnecessary-value-param) I think it would be nice to have a check for this.

What do you think?

Probably only if the method is not virtual, since I can imagine cases where children classes might not always be able to return a const reference.

I guess some people might still prefer to return a copy, to avoid callers to potentially mess up things using `const_cast`, but for most users, I think it would be nice to have this check.
</pre>
<img width="1" height="1" alt="" src="http://email.email.llvm.org/o/eJykVFGL6zYT_TXKy5DgSIntPPghu0s-9u2DlvaxyPLEVq8sGc0oqf99kePdm-6ltFAIBEszZ2bOORpNZHuP2Ijjizi-bXTiIcTmHL1O3YtF7zFu2tDNzc8DwjU4F-7W92BCh0KdRXEWZbH-ijNxlw_VmTjmqP8h_6JdQiFrIU9ggicGUb1ARE7Rw_i4VS8gqrcvWELWd8sDiLJYw8oCWsywOh9-qZVvRxxbjEKecnpxtgQ-MISJ7agdkPUGwTKMth8YJozXEEfQHpL3aJBIxxlMmGYIV-ABYZ0itL-jYSFf4T5YM6z5GbpF8IgddrtHxR85gntIrsuBLRL_yNiDkq-zyPK_UVecf7KjdToCh49BtTe4fZp0e8sA20lHPWbxX6V4KcXxTch6YJ4oNyQvQl6M077fOXcbdyH2Ql7wD47642LLtpvzx4DmGwl5eSon5OVvCu4GHp2Q6t_0Jk_wDjxY_y2L98mntwbzeIO-IWhY6sM1xBxKqx6_DpqhCzCH9EAQ6vK4-X8MrW7dDMG7GexD7xF5CB2svrnZyEm7rPvDOu9gtAc76t56BKMJCe4DRgQzWNdF9GCcpnz83SLa3fVMuWHduqXhVUC9ahrxihG9wbXnd-gTEgGFEWHCMDlc4YitczAtCV-Apjm3yQH0LdgOjHYOIy3qB0bPVjs3w5hx07RQ0RMkyi4VZbE08pvRxNk_8hXaxAuVYyCGRBgpn_6jCpn5hxC7Tdeo7qROeoPNvjqog1JlWW2Gpq7VqW4PhSz36ip1fT12XV2Z_aEt1FHtTxvbyEIeC6X2-2NRHaqdLI_GGFNXpak6VStxKHDU1n1acmOJEjZ7pSp12DjdoqNln0n5bFGZ91tscta2TT2JQ-EsMX3HYctu2YRPacc3eP20VvJPa8IigaYPFRbHLkE9MmOEa_KGbfC0SdE1f31SveUhtTsTRiEvufz6t51ieOyayzJTfk_rWLdG_hkAAP__ig7jTw">