| 83 | #define kClipSourceCountNumerous 128 |
| 84 | |
| 85 | static |
| 86 | std::string |
| 87 | unsignedToString(unsigned i) |
| 88 | { |
| 89 | if (i == 0) { |
| 90 | return "0"; |
| 91 | } |
| 92 | std::string nb; |
| 93 | for (unsigned j = i; j != 0; j /= 10) { |
| 94 | nb = (char)( '0' + (j % 10) ) + nb; |
| 95 | } |
| 96 | |
| 97 | return nb; |
| 98 | } |
| 99 | |
| 100 | //////////////////////////////////////////////////////////////////////////////// |
| 101 | /** @brief The plugin that does our work */ |
no outgoing calls
no test coverage detected