Default constructors.
| 69 | |
| 70 | // Default constructors. |
| 71 | DepGraph() noexcept = default; |
| 72 | DepGraph(const DepGraph&) noexcept = default; |
| 73 | DepGraph(DepGraph&&) noexcept = default; |
| 74 | DepGraph& operator=(const DepGraph&) noexcept = default; |
nothing calls this directly
no test coverage detected