MCPcopy Create free account
hub / github.com/apache/qpid-proton / update

Method update

cpp/src/connection_options.cpp:52–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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
55class connection_options::impl {

Callers 2

updateMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected