diff options
| author | 2023-09-19 23:54:04 -0700 | |
|---|---|---|
| committer | 2023-09-26 16:58:15 -0700 | |
| commit | bba43428f314582e9b628b79aa13b357f0fa29fd (patch) | |
| tree | f398825a6e7c5a5dedfd6ff9bd0ec312076fba4f | |
| parent | ded71e687656d560a3c80b8d959d2f6c7aaaafd8 (diff) | |
inputflinger: add missing <functional> include
Bug: 175635923
Test: treehugger
Change-Id: Ieb7828b26613c3b5470c9b76f31ad1b6b09d9445
Merged-In: Ieb7828b26613c3b5470c9b76f31ad1b6b09d9445
| -rw-r--r-- | services/inputflinger/BlockingQueue.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/services/inputflinger/BlockingQueue.h b/services/inputflinger/BlockingQueue.h index 8300e8a3da..032cb6dea3 100644 --- a/services/inputflinger/BlockingQueue.h +++ b/services/inputflinger/BlockingQueue.h @@ -17,10 +17,11 @@ #ifndef _UI_INPUT_BLOCKING_QUEUE_H #define _UI_INPUT_BLOCKING_QUEUE_H -#include "android-base/thread_annotations.h" #include <condition_variable> +#include <functional> #include <mutex> #include <vector> +#include "android-base/thread_annotations.h" namespace android { |