| 386 | } |
| 387 | |
| 388 | std::string CompilationTypeToString(CompilationType compilationType) |
| 389 | { |
| 390 | switch (compilationType) |
| 391 | { |
| 392 | case CompilationType::Category: return "Category"; |
| 393 | case CompilationType::Collection: return "Collection"; |
| 394 | case CompilationType::Day: return "Day"; |
| 395 | case CompilationType::Count: CHECK(false, ("Unknown access rules")); return {}; |
| 396 | } |
| 397 | } |
| 398 | |
| 399 | std::string BookmarkDataToString(BookmarkData const & bm) |
| 400 | { |
no outgoing calls
no test coverage detected