No copy or move -- pointer only
| 23 | |
| 24 | // No copy or move -- pointer only |
| 25 | GraphModule(const GraphModule&) = delete; |
| 26 | GraphModule(GraphModule&&) = delete; |
| 27 | GraphModule& operator=(const GraphModule&) = delete; |
| 28 | GraphModule& operator=(GraphModule&&) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected