| 24 | #include "flow/actorcompiler.h" // This must be the last #include. |
| 25 | |
| 26 | Value uInt64ToValue(uint64_t v) { |
| 27 | return StringRef(format("%016llx", v)); |
| 28 | } |
| 29 | uint64_t valueToUInt64(const StringRef& v) { |
| 30 | uint64_t x = 0; |
| 31 | sscanf(v.toString().c_str(), "%" SCNx64, &x); |
no test coverage detected