| 32 | double time; |
| 33 | |
| 34 | item(const string& input) { |
| 35 | args = extract_value(input, "args"); |
| 36 | concurrency = atoi( extract_value(input, "concurrency").c_str() ); |
| 37 | time = atof( extract_value(input, "time").c_str() ); |
| 38 | } |
| 39 | }; |
| 40 | |
| 41 | auto data_unparsed = load_data(); |
nothing calls this directly
no test coverage detected