| 28 | namespace arm_compute |
| 29 | { |
| 30 | std::string Size3D::to_string() const |
| 31 | { |
| 32 | return support::cpp11::to_string(width) + std::string("x") + support::cpp11::to_string(height) + std::string("x") + |
| 33 | support::cpp11::to_string(depth); |
| 34 | } |
| 35 | } // namespace arm_compute |
no test coverage detected