diff --git a/libutils/binder/include/utils/TypeHelpers.h b/libutils/binder/include/utils/TypeHelpers.h index 1554f52ee..21d9b3db1 100644 --- a/libutils/binder/include/utils/TypeHelpers.h +++ b/libutils/binder/include/utils/TypeHelpers.h @@ -109,6 +109,11 @@ ANDROID_BASIC_TYPES_TRAITS( unsigned long long ) ANDROID_BASIC_TYPES_TRAITS( float ) ANDROID_BASIC_TYPES_TRAITS( double ) +template struct trait_trivial_ctor { enum { value = true }; }; +template struct trait_trivial_dtor { enum { value = true }; }; +template struct trait_trivial_copy { enum { value = true }; }; +template struct trait_trivial_move { enum { value = true }; }; + // ---------------------------------------------------------------------------