commit | bba43428f314582e9b628b79aa13b357f0fa29fd | [log] [tgz] |
---|---|---|
author | Ryan Prichard <rprichard@google.com> | Tue Sep 19 23:54:04 2023 -0700 |
committer | Ryan Prichard <rprichard@google.com> | Tue Sep 26 16:58:15 2023 -0700 |
tree | f398825a6e7c5a5dedfd6ff9bd0ec312076fba4f | |
parent | ded71e687656d560a3c80b8d959d2f6c7aaaafd8 [diff] |
inputflinger: add missing <functional> include Bug: 175635923 Test: treehugger Change-Id: Ieb7828b26613c3b5470c9b76f31ad1b6b09d9445 Merged-In: Ieb7828b26613c3b5470c9b76f31ad1b6b09d9445
diff --git a/services/inputflinger/BlockingQueue.h b/services/inputflinger/BlockingQueue.h index 8300e8a..032cb6d 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 {