| 7431 | // overload only apply when a particular expression is true, add |
| 7432 | // "typename EnableIf<expression>::type* = 0" as the last parameter. |
| 7433 | template<bool> struct EnableIf; |
| 7434 | template<> struct EnableIf<true> { typedef void type; }; // NOLINT |
| 7435 | |
| 7436 | // Utilities for native arrays. |
nothing calls this directly
no outgoing calls
no test coverage detected