summaryrefslogtreecommitdiffstats
path: root/minui/minui.h
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2016-07-27 19:19:47 +0200
committerChih-Hung Hsieh <chh@google.com>2016-07-27 19:19:47 +0200
commit23abfd37a55f281186f9275ad35b7182efd2e8b6 (patch)
treebba862d8cd7b056082bdb8a067418d991190b86e /minui/minui.h
parentMerge "Fix install.h's use of attribute printf." (diff)
downloadandroid_bootable_recovery-23abfd37a55f281186f9275ad35b7182efd2e8b6.tar
android_bootable_recovery-23abfd37a55f281186f9275ad35b7182efd2e8b6.tar.gz
android_bootable_recovery-23abfd37a55f281186f9275ad35b7182efd2e8b6.tar.bz2
android_bootable_recovery-23abfd37a55f281186f9275ad35b7182efd2e8b6.tar.lz
android_bootable_recovery-23abfd37a55f281186f9275ad35b7182efd2e8b6.tar.xz
android_bootable_recovery-23abfd37a55f281186f9275ad35b7182efd2e8b6.tar.zst
android_bootable_recovery-23abfd37a55f281186f9275ad35b7182efd2e8b6.zip
Diffstat (limited to '')
-rw-r--r--minui/minui.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/minui/minui.h b/minui/minui.h
index e3bc00548..b2648fb33 100644
--- a/minui/minui.h
+++ b/minui/minui.h
@@ -67,7 +67,7 @@ typedef int (*ev_set_key_callback)(int code, int value, void* data);
int ev_init(ev_callback input_cb, void* data);
void ev_exit();
int ev_add_fd(int fd, ev_callback cb, void* data);
-void ev_iterate_available_keys(std::function<void(int)> f);
+void ev_iterate_available_keys(const std::function<void(int)>& f);
int ev_sync_key_state(ev_set_key_callback set_key_cb, void* data);
// 'timeout' has the same semantics as poll(2).