We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
std::is_virtual_base_of
type_traits.inc
1 parent fdc1b5d commit 4640736Copy full SHA for 4640736
libcxx/modules/std/type_traits.inc
@@ -114,6 +114,9 @@ export namespace std {
114
115
// [meta.rel], type relations
116
using std::is_base_of;
117
+#if _LIBCPP_STD_VER >= 26 && __has_builtin(__builtin_is_virtual_base_of)
118
+ using std::is_virtual_base_of;
119
+#endif
120
using std::is_convertible;
121
// using std::is_layout_compatible;
122
using std::is_nothrow_convertible;
@@ -287,6 +290,9 @@ export namespace std {
287
290
288
291
289
292
using std::is_base_of_v;
293
294
+ using std::is_virtual_base_of_v;
295
296
using std::is_convertible_v;
297
using std::is_invocable_r_v;
298
using std::is_invocable_v;
0 commit comments