| 1298 | // standard, and necessary so that "T" can always bind to "const T&". |
| 1299 | template <typename T> |
| 1300 | struct ConstRef { typedef const T& type; }; |
| 1301 | template <typename T> |
| 1302 | struct ConstRef<T&> { typedef T& type; }; |
| 1303 |
nothing calls this directly
no outgoing calls
no test coverage detected