| 50 | option() : value(), set(false) {} |
| 51 | option& operator=(const T& x) { value = x; set = true; return *this; } |
| 52 | void update(const option<T>& x) { if (x.set) *this = x.value; } |
| 53 | }; |
| 54 | |
| 55 | class connection_options::impl { |
no outgoing calls
no test coverage detected