MCPcopy Create free account
hub / github.com/cameron314/concurrentqueue / Copyable

Method Copyable

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

Source from the content-addressed store, hash-verified

184
185struct Copyable {
186 Copyable(int id) : copied(false), id(id) { }
187 Copyable(Copyable const& o) : copied(true), id(o.id) { }
188 void operator=(Copyable const& o) { copied = true; id = o.id; }
189 bool copied;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected