| 73 | } |
| 74 | |
| 75 | inline std::string int_version_to_string(int version) { |
| 76 | return std::to_string(version / 1000) + "." + |
| 77 | std::to_string(static_cast<int>((version % 1000) / 10.)); |
| 78 | } |
| 79 | |
| 80 | } // namespace common |
| 81 | } // namespace arrayfire |
no test coverage detected