diff options
Diffstat (limited to 'runtime/reference_table.cc')
-rw-r--r-- | runtime/reference_table.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/reference_table.cc b/runtime/reference_table.cc index d62cbdb11a..45f5633f3d 100644 --- a/runtime/reference_table.cc +++ b/runtime/reference_table.cc @@ -277,7 +277,7 @@ void ReferenceTable::Dump(std::ostream& os, Table& entries) { size_t identical; SummaryElement() : equiv(0), identical(0) {} - SummaryElement(SummaryElement&& ref) { + SummaryElement(SummaryElement&& ref) noexcept { root = ref.root; equiv = ref.equiv; identical = ref.identical; |