| 1277 | // tr1::add_reference, which is not widely available yet. |
| 1278 | template <typename T> |
| 1279 | struct AddReference { typedef T& type; }; // NOLINT |
| 1280 | template <typename T> |
| 1281 | struct AddReference<T&> { typedef T& type; }; // NOLINT |
| 1282 |
nothing calls this directly
no outgoing calls
no test coverage detected