summaryrefslogtreecommitdiff
path: root/libs/gui/FrameTimestamps.cpp
diff options
context:
space:
mode:
author Chih-hung Hsieh <chh@google.com> 2018-10-02 22:46:52 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2018-10-02 22:46:52 +0000
commita45f6e6c2f2597c250c20dbda6d74d582772d5a5 (patch)
treedb51997da217765e70e04a9f4ca4797afc5afa9d /libs/gui/FrameTimestamps.cpp
parent0d29a7512d00e5b9abec6a95add4b01a6ab4f07b (diff)
parent5bc849f6065971eb92e7a7696b13d90d9add2d9c (diff)
Merge "Add noexcept to move constructors and assignment operators."
Diffstat (limited to 'libs/gui/FrameTimestamps.cpp')
-rw-r--r--libs/gui/FrameTimestamps.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/gui/FrameTimestamps.cpp b/libs/gui/FrameTimestamps.cpp
index a379ad6306..85ae433e42 100644
--- a/libs/gui/FrameTimestamps.cpp
+++ b/libs/gui/FrameTimestamps.cpp
@@ -621,7 +621,7 @@ status_t FrameEventsDelta::unflatten(void const*& buffer, size_t& size,
// ============================================================================
FrameEventHistoryDelta& FrameEventHistoryDelta::operator=(
- FrameEventHistoryDelta&& src) {
+ FrameEventHistoryDelta&& src) noexcept {
mCompositorTiming = src.mCompositorTiming;
if (CC_UNLIKELY(!mDeltas.empty())) {