| 456 | /// Construct an ArrayRef from a single element. |
| 457 | template<typename T> |
| 458 | ArrayRef<T> makeArrayRef(const T &OneElt) { |
| 459 | return OneElt; |
| 460 | } |
| 461 | |
| 462 | /// Construct an ArrayRef from a pointer and length. |
| 463 | template<typename T> |
no outgoing calls
no test coverage detected