diff options
author | Tianjie Xu <xunchang@google.com> | 2017-03-22 20:27:26 +0100 |
---|---|---|
committer | Tianjie Xu <xunchang@google.com> | 2017-03-25 00:54:52 +0100 |
commit | 2078b22e4145fef2648cc714eae6588353940c4b (patch) | |
tree | 9d93bb7dfa2f4bd9951aaa5fe429a511b1435b33 /minui/include | |
parent | Merge "Redundant checking of STL container element" (diff) | |
download | android_bootable_recovery-2078b22e4145fef2648cc714eae6588353940c4b.tar android_bootable_recovery-2078b22e4145fef2648cc714eae6588353940c4b.tar.gz android_bootable_recovery-2078b22e4145fef2648cc714eae6588353940c4b.tar.bz2 android_bootable_recovery-2078b22e4145fef2648cc714eae6588353940c4b.tar.lz android_bootable_recovery-2078b22e4145fef2648cc714eae6588353940c4b.tar.xz android_bootable_recovery-2078b22e4145fef2648cc714eae6588353940c4b.tar.zst android_bootable_recovery-2078b22e4145fef2648cc714eae6588353940c4b.zip |
Diffstat (limited to 'minui/include')
-rw-r--r-- | minui/include/minui/minui.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/minui/include/minui/minui.h b/minui/include/minui/minui.h index a1749dfe6..78dd4cb98 100644 --- a/minui/include/minui/minui.h +++ b/minui/include/minui/minui.h @@ -20,6 +20,7 @@ #include <sys/types.h> #include <functional> +#include <string> // // Graphics. @@ -93,7 +94,7 @@ int ev_get_epollfd(); // Resources // -bool matches_locale(const char* prefix, const char* locale); +bool matches_locale(const std::string& prefix, const std::string& locale); // res_create_*_surface() functions return 0 if no error, else // negative. |