diff options
| author | 2021-04-16 18:06:14 +0000 | |
|---|---|---|
| committer | 2021-04-16 18:06:14 +0000 | |
| commit | b53c658e13676ff04b9b09e05c6760b860d30a70 (patch) | |
| tree | f656fd963a1788472f097552b2796f3afedd6f32 | |
| parent | b64535d32796d3a02b6f5edd4d7e13d225a71064 (diff) | |
| parent | 09eaaaa4d7932790923c38deaac14773239c8a73 (diff) | |
Merge "libbinder_ndk: add missing lt&co __INTRODUCED_IN" am: cde99346f4 am: 6ff7b3cc54 am: 09eaaaa4d7
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1674667
Change-Id: I7b417a965645ec077089ae161feb7a8653edf8a7
| -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 |