summaryrefslogtreecommitdiffstats
path: root/minui/minui.h
diff options
context:
space:
mode:
authorChih-hung Hsieh <chh@google.com>2016-07-27 22:53:01 +0200
committerandroid-build-merger <android-build-merger@google.com>2016-07-27 22:53:01 +0200
commitfc7cbe465f7eb175e33e1939753d435c33c361cf (patch)
tree2ac000f19a34400eff83318796e968040dfc4add /minui/minui.h
parentImport translations. DO NOT MERGE (diff)
parentMerge \"Fix clang-tidy performance warnings.\" (diff)
downloadandroid_bootable_recovery-fc7cbe465f7eb175e33e1939753d435c33c361cf.tar
android_bootable_recovery-fc7cbe465f7eb175e33e1939753d435c33c361cf.tar.gz
android_bootable_recovery-fc7cbe465f7eb175e33e1939753d435c33c361cf.tar.bz2
android_bootable_recovery-fc7cbe465f7eb175e33e1939753d435c33c361cf.tar.lz
android_bootable_recovery-fc7cbe465f7eb175e33e1939753d435c33c361cf.tar.xz
android_bootable_recovery-fc7cbe465f7eb175e33e1939753d435c33c361cf.tar.zst
android_bootable_recovery-fc7cbe465f7eb175e33e1939753d435c33c361cf.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 fb0bbe10c..cddfe77f3 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).