| 131 | // the local copy is unnecessary. |
| 132 | template <typename T> |
| 133 | T SubtleMustCopyIfIntegral(const T& value) { |
| 134 | return internal::SubtleMustCopy(value); |
| 135 | } |
| 136 | |
| 137 | inline const string& SubtleMustCopyIfIntegral(const string& value) { |
| 138 | return value; |
no test coverage detected