| 2070 | ActorLineageImpl::ActorLineageImpl(KeyRangeRef kr) : SpecialKeyRangeReadImpl(kr) {} |
| 2071 | |
| 2072 | void parse(StringRef& val, int& i) { |
| 2073 | i = std::stoi(val.toString()); |
| 2074 | } |
| 2075 | |
| 2076 | void parse(StringRef& val, double& d) { |
| 2077 | d = std::stod(val.toString()); |
no test coverage detected