diff options
| -rw-r--r-- | services/inputflinger/dispatcher/InputEventTimeline.cpp | 2 | ||||
| -rw-r--r-- | services/inputflinger/dispatcher/InputEventTimeline.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/services/inputflinger/dispatcher/InputEventTimeline.cpp b/services/inputflinger/dispatcher/InputEventTimeline.cpp index a7c6d162d8..a3650030ac 100644 --- a/services/inputflinger/dispatcher/InputEventTimeline.cpp +++ b/services/inputflinger/dispatcher/InputEventTimeline.cpp @@ -68,7 +68,7 @@ bool ConnectionTimeline::operator!=(const ConnectionTimeline& rhs) const { InputEventTimeline::InputEventTimeline(bool isDown, nsecs_t eventTime, nsecs_t readTime, uint16_t vendorId, uint16_t productId, - std::set<InputDeviceUsageSource> sources) + const std::set<InputDeviceUsageSource>& sources) : isDown(isDown), eventTime(eventTime), readTime(readTime), diff --git a/services/inputflinger/dispatcher/InputEventTimeline.h b/services/inputflinger/dispatcher/InputEventTimeline.h index e9deb2d3cf..1756944d0e 100644 --- a/services/inputflinger/dispatcher/InputEventTimeline.h +++ b/services/inputflinger/dispatcher/InputEventTimeline.h @@ -76,7 +76,7 @@ private: struct InputEventTimeline { InputEventTimeline(bool isDown, nsecs_t eventTime, nsecs_t readTime, uint16_t vendorId, - uint16_t productId, std::set<InputDeviceUsageSource> sources); + uint16_t productId, const std::set<InputDeviceUsageSource>& sources); const bool isDown; // True if this is an ACTION_DOWN event const nsecs_t eventTime; const nsecs_t readTime; |