| 51 | |
| 52 | |
| 53 | std::string GetDebugActionsLog(DebugActionFlags flags) { |
| 54 | std::string result = {}; |
| 55 | |
| 56 | std::vector<std::string> tmp = GetDebugActionStrings(flags); |
| 57 | |
| 58 | for (std::size_t i = 0, n = tmp.size(); i < n; ++i) { |
| 59 | if (!result.empty()) { |
| 60 | result += ", "; |
| 61 | } |
| 62 | result += tmp[i]; |
| 63 | } |
| 64 | |
| 65 | return result; |
| 66 | } |
| 67 | |
| 68 | #if defined(__ANDROID__) |
| 69 |
no test coverage detected