diff options
| author | 2021-04-13 19:43:40 +0000 | |
|---|---|---|
| committer | 2021-04-13 19:45:38 +0000 | |
| commit | be045b20be937630bb0d947b20cb886b9488defc (patch) | |
| tree | 274bc7773e163da35d9e665f6ab416ab5ca527e6 | |
| parent | 6fde2dde0623e2dfb27fd1912a1ece0d1da3643e (diff) | |
libbinder_ndk: add missing lt&co __INTRODUCED_IN
Several functions were recently added to the libbinder_ndk API which
were missing __INTRODUCED_IN specifications.
Bug: 185256226
Test: N/A
Change-Id: Idfcfa0ff54425e4751a230c73d402a3013cc97ab
| -rw-r--r-- | libs/binder/ndk/include_ndk/android/binder_ibinder.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/binder/ndk/include_ndk/android/binder_ibinder.h b/libs/binder/ndk/include_ndk/android/binder_ibinder.h index b9adc9a025..787a24589f 100644 --- a/libs/binder/ndk/include_ndk/android/binder_ibinder.h +++ b/libs/binder/ndk/include_ndk/android/binder_ibinder.h @@ -669,7 +669,7 @@ const char* AIBinder_Class_getDescriptor(const AIBinder_Class* clazz) __INTRODUC * * \return whether "lhs < rhs" is true */ -bool AIBinder_lt(const AIBinder* lhs, const AIBinder* rhs); +bool AIBinder_lt(const AIBinder* lhs, const AIBinder* rhs) __INTRODUCED_IN(31); /** * Clone an AIBinder_Weak. Useful because even if a weak binder promotes to a @@ -683,7 +683,7 @@ bool AIBinder_lt(const AIBinder* lhs, const AIBinder* rhs); * \return clone of the input parameter. This must be deleted with * AIBinder_Weak_delete. Null if weak input parameter is also null. */ -AIBinder_Weak* AIBinder_Weak_clone(const AIBinder_Weak* weak); +AIBinder_Weak* AIBinder_Weak_clone(const AIBinder_Weak* weak) __INTRODUCED_IN(31); /** * Whether AIBinder_Weak is less than another. @@ -718,7 +718,7 @@ AIBinder_Weak* AIBinder_Weak_clone(const AIBinder_Weak* weak); * * \return whether "lhs < rhs" is true */ -bool AIBinder_Weak_lt(const AIBinder_Weak* lhs, const AIBinder_Weak* rhs); +bool AIBinder_Weak_lt(const AIBinder_Weak* lhs, const AIBinder_Weak* rhs) __INTRODUCED_IN(31); __END_DECLS |