MCPcopy Create free account
hub / github.com/codeinred/tuplet / B

Class B

test/test_traits.cpp:65–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63 int value = 0;
64};
65struct B {
66 int value = 0;
67 B& operator=(B const& b) {
68 value = b.value;
69 return *this;
70 }
71 B& operator=(B&& b) {
72 value = b.value;
73 return *this;
74 }
75};
76struct C {
77 int value;
78 template <class U>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected