| 514 | /// Construct a MutableArrayRef from a single element. |
| 515 | template<typename T> |
| 516 | MutableArrayRef<T> makeMutableArrayRef(T &OneElt) { |
| 517 | return OneElt; |
| 518 | } |
| 519 | |
| 520 | /// Construct a MutableArrayRef from a pointer and length. |
| 521 | template<typename T> |
no outgoing calls
no test coverage detected