| 47 | #include "flow/actorcompiler.h" // This must be the last #include. |
| 48 | |
| 49 | bool isInteger(const std::string& s) { |
| 50 | if (s.empty()) |
| 51 | return false; |
| 52 | char* p; |
| 53 | strtol(s.c_str(), &p, 10); |
| 54 | return (*p == 0); |
| 55 | } |
| 56 | |
| 57 | // Defines the mapping between configuration names (as exposed by fdbcli, buildConfiguration()) and actual configuration |
| 58 | // parameters |
no test coverage detected