* The two parameters constructor gives users a fast way to * build an object of this type. */
| 48 | * build an object of this type. |
| 49 | */ |
| 50 | curl_pair(const T option, const K &value) : option(option), value(value) {}; |
| 51 | /** |
| 52 | * Simple method that returns the first field of the pair. |
| 53 | */ |
nothing calls this directly
no outgoing calls
no test coverage detected