| 54 | } |
| 55 | |
| 56 | static std::string versionToString(Optional<Version> version) { |
| 57 | if (version.present()) |
| 58 | return std::to_string(version.get()); |
| 59 | else |
| 60 | return "N/A"; |
| 61 | } |
| 62 | |
| 63 | static std::string timeStampToString(Optional<int64_t> epochs) { |
| 64 | if (!epochs.present()) |
no test coverage detected