| 8 | namespace caffe { |
| 9 | |
| 10 | inline std::string format_int(int n, int numberOfLeadingZeros = 0 ) { |
| 11 | std::ostringstream s; |
| 12 | s << std::setw(numberOfLeadingZeros) << std::setfill('0') << n; |
| 13 | return s.str(); |
| 14 | } |
| 15 | |
| 16 | } |
| 17 |
no outgoing calls
no test coverage detected