Internals: Use C++11 = default where obvious. No functional change intended.

This commit is contained in:
Wilson Snyder
2020-11-16 19:56:16 -05:00
parent 70b3a599ce
commit 1b0a48ea02
118 changed files with 381 additions and 373 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ struct GraphPCNode {
GraphPCNode() {
for (unsigned int& w : m_cp) w = 0;
}
~GraphPCNode() {}
~GraphPCNode() = default;
};
//######################################################################