simple helper
| 63 | |
| 64 | // simple helper |
| 65 | static std::string toString(const int i) { // #nocov start |
| 66 | std::ostringstream ostr; |
| 67 | ostr << i; |
| 68 | return ostr.str(); // #nocov end |
| 69 | } |
| 70 | |
| 71 | class no_such_env : public std::exception { |
| 72 | public: |
no outgoing calls
no test coverage detected