| 69 | #endif |
| 70 | |
| 71 | static |
| 72 | std::string |
| 73 | unsignedToString(unsigned i) |
| 74 | { |
| 75 | if (i == 0) { |
| 76 | return "0"; |
| 77 | } |
| 78 | std::string nb; |
| 79 | for (unsigned j = i; j != 0; j /= 10) { |
| 80 | nb = (char)( '0' + (j % 10) ) + nb; |
| 81 | } |
| 82 | |
| 83 | return nb; |
| 84 | } |
| 85 | |
| 86 | //////////////////////////////////////////////////////////////////////////////// |
| 87 | /** @brief The plugin that does our work */ |
no outgoing calls
no test coverage detected