Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 922163
Collapse All | Expand All

(-)a/include/base/cef_template_util.h (-1 / +1 lines)
Lines 170-176 Link Here
170
  static constexpr bool value = __is_trivially_copyable(T);
170
  static constexpr bool value = __is_trivially_copyable(T);
171
#else
171
#else
172
  static constexpr bool value =
172
  static constexpr bool value =
173
      __has_trivial_copy(T) && __has_trivial_destructor(T);
173
      __is_trivially_copyable(T) && __is_trivially_destructible(T);
174
#endif
174
#endif
175
};
175
};
176
#else
176
#else

Return to bug 922163