MCPcopy Create free account
hub / github.com/cameron314/readerwriterqueue / Foo

Method Foo

tests/unittests/unittests.cpp:21–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19struct Foo
20{
21 Foo() : copied(false) { id = _id()++; }
22 Foo(Foo const& other) : id(other.id), copied(true) { }
23 Foo(Foo&& other) : id(other.id), copied(other.copied) { other.copied = true; }
24 Foo& operator=(Foo&& other)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected