Use = default for trivial special members

Applied changes correspond to clang-tidy fixes
stemming from the modernize-use-equals-default check.

Change-Id: I254b0908a76d464131564b637cd0e42a6b03fb5a
This commit is contained in:
Sergiu Deitsch
2022-02-09 00:56:10 +01:00
parent db67e621e4
commit a35bd1bf90
90 changed files with 127 additions and 127 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ class SizedCostFunction : public CostFunction {
*mutable_parameter_block_sizes() = std::vector<int32_t>{Ns...};
}
~SizedCostFunction() override {}
~SizedCostFunction() override = default;
// Subclasses must implement Evaluate().
};