diff options
author | Nick Kralevich <nnk@google.com> | 2015-10-22 07:09:23 -0700 |
---|---|---|
committer | Nick Kralevich <nnk@google.com> | 2015-10-22 07:09:23 -0700 |
commit | 834ac204ce52d874cdd7ae921e5a4d85c5e42c52 (patch) | |
tree | 0869122beccbca782a2d39b675e455a0035eeef1 /include | |
parent | 5d17838adef13062717322e79d4db0b9bb6b2395 (diff) | |
download | frameworks_native-834ac204ce52d874cdd7ae921e5a4d85c5e42c52.zip frameworks_native-834ac204ce52d874cdd7ae921e5a4d85c5e42c52.tar.gz frameworks_native-834ac204ce52d874cdd7ae921e5a4d85c5e42c52.tar.bz2 |
DO NOT MERGE: fix build breakage
fix klp-dev only build breakage.
frameworks/native/libs/input/Input.cpp: In member function 'android::status_t android::MotionEvent::readFromParcel(android::Parcel*)':
frameworks/native/libs/input/Input.cpp:494:47: error: 'UINT16_MAX' was not declared in this scope
Bug: 23905002
Change-Id: I4b6b864ca64d39a8873d045a61e0ddaea2ab9109
Diffstat (limited to 'include')
-rw-r--r-- | include/input/Input.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/input/Input.h b/include/input/Input.h index 97101a7..f8075e4 100644 --- a/include/input/Input.h +++ b/include/input/Input.h @@ -27,6 +27,7 @@ #include <utils/Timers.h> #include <utils/RefBase.h> #include <utils/String8.h> +#include <stdint.h> /* * Additional private constants not defined in ndk/ui/input.h. |