summaryrefslogtreecommitdiffstats
path: root/minui/minui.h
diff options
context:
space:
mode:
authorChih-hung Hsieh <chh@google.com>2016-07-27 22:40:38 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-07-27 22:40:39 +0200
commit2a3b695168cd06c5093895568a5d70c648de8e77 (patch)
treebba862d8cd7b056082bdb8a067418d991190b86e /minui/minui.h
parentMerge "Fix install.h's use of attribute printf." (diff)
parentFix clang-tidy performance warnings. (diff)
downloadandroid_bootable_recovery-2a3b695168cd06c5093895568a5d70c648de8e77.tar
android_bootable_recovery-2a3b695168cd06c5093895568a5d70c648de8e77.tar.gz
android_bootable_recovery-2a3b695168cd06c5093895568a5d70c648de8e77.tar.bz2
android_bootable_recovery-2a3b695168cd06c5093895568a5d70c648de8e77.tar.lz
android_bootable_recovery-2a3b695168cd06c5093895568a5d70c648de8e77.tar.xz
android_bootable_recovery-2a3b695168cd06c5093895568a5d70c648de8e77.tar.zst
android_bootable_recovery-2a3b695168cd06c5093895568a5d70c648de8e77.zip
Diffstat (limited to 'minui/minui.h')
-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).