| 126 | } |
| 127 | |
| 128 | static inline std::string strAppend(std::string& lhs, StringRef const& rhs) { |
| 129 | std::string r; |
| 130 | r.reserve(lhs.size() + rhs.size()); |
| 131 | r = lhs; |
| 132 | r += rhs; |
| 133 | return r; |
| 134 | } |
| 135 | |
| 136 | ACTOR static Future<Void> FDBPlugin_getDescendants(DataKey key, |
| 137 | Reference<DocTransaction> tr, |
no test coverage detected