Merge "perfetto: Fix two small build issues."
diff --git a/include/perfetto/base/BUILD.gn b/include/perfetto/base/BUILD.gn
index 41f075d..908baf4 100644
--- a/include/perfetto/base/BUILD.gn
+++ b/include/perfetto/base/BUILD.gn
@@ -24,6 +24,7 @@
"string_splitter.h",
"string_utils.h",
"task_runner.h",
+ "temp_file.h",
"thread_checker.h",
"time.h",
"unix_task_runner.h",
diff --git a/src/base/watchdog_posix.cc b/src/base/watchdog_posix.cc
index 9864e7b..5f8755f 100644
--- a/src/base/watchdog_posix.cc
+++ b/src/base/watchdog_posix.cc
@@ -247,7 +247,7 @@
}
}
-Watchdog::Timer::Timer(Timer&& other) {
+Watchdog::Timer::Timer(Timer&& other) noexcept {
timerid_ = other.timerid_;
other.timerid_ = nullptr;
}