]> gcc.gnu.org Git - gcc.git/blame - libstdc++-v3/include/std/any
libstdc++: Suppress Doxygen docs for more implementation details
[gcc.git] / libstdc++-v3 / include / std / any
CommitLineData
52e86221
VV
1// <any> -*- C++ -*-
2
99dee823 3// Copyright (C) 2014-2021 Free Software Foundation, Inc.
52e86221
VV
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 3, or (at your option)
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
16// Under Section 7 of GPL version 3, you are granted additional
17// permissions described in the GCC Runtime Library Exception, version
18// 3.1, as published by the Free Software Foundation.
19
20// You should have received a copy of the GNU General Public License and
21// a copy of the GCC Runtime Library Exception along with this program;
22// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23// <http://www.gnu.org/licenses/>.
24
25/** @file include/any
26 * This is a Standard C++ Library header.
27 */
28
29#ifndef _GLIBCXX_ANY
30#define _GLIBCXX_ANY 1
31
32#pragma GCC system_header
33
c6888c62 34#if __cplusplus >= 201703L
52e86221 35
261d5a4a 36#include <initializer_list>
52e86221
VV
37#include <typeinfo>
38#include <new>
52e86221 39#include <type_traits>
261d5a4a 40#include <bits/utility.h> // in_place_type_t
52e86221
VV
41
42namespace std _GLIBCXX_VISIBILITY(default)
43{
44_GLIBCXX_BEGIN_NAMESPACE_VERSION
45
46 /**
47 * @addtogroup utilities
48 * @{
49 */
50
51 /**
52 * @brief Exception class thrown by a failed @c any_cast
53 * @ingroup exceptions
54 */
55 class bad_any_cast : public bad_cast
56 {
57 public:
58 virtual const char* what() const noexcept { return "bad any_cast"; }
59 };
60
61 [[gnu::noreturn]] inline void __throw_bad_any_cast()
62 {
63#if __cpp_exceptions
64 throw bad_any_cast{};
65#else
66 __builtin_abort();
67#endif
68 }
69
56a9eaf9 70#define __cpp_lib_any 201606L
c6888c62 71
52e86221
VV
72 /**
73 * @brief A type-safe container of any type.
73ebece3 74 *
6667d5fe 75 * An `any` object's state is either empty or it stores a contained object
52e86221 76 * of CopyConstructible type.
6667d5fe
JW
77 *
78 * @since C++17
52e86221
VV
79 */
80 class any
81 {
82 // Holds either pointer to a heap object or the contained object itself.
83 union _Storage
84 {
25a69162 85 constexpr _Storage() : _M_ptr{nullptr} {}
52e86221
VV
86
87 // Prevent trivial copies of this type, buffer might hold a non-POD.
88 _Storage(const _Storage&) = delete;
89 _Storage& operator=(const _Storage&) = delete;
90
91 void* _M_ptr;
92 aligned_storage<sizeof(_M_ptr), alignof(void*)>::type _M_buffer;
93 };
94
95 template<typename _Tp, typename _Safe = is_nothrow_move_constructible<_Tp>,
96 bool _Fits = (sizeof(_Tp) <= sizeof(_Storage))
97 && (alignof(_Tp) <= alignof(_Storage))>
98 using _Internal = std::integral_constant<bool, _Safe::value && _Fits>;
99
100 template<typename _Tp>
101 struct _Manager_internal; // uses small-object optimization
102
103 template<typename _Tp>
104 struct _Manager_external; // creates contained object on the heap
105
106 template<typename _Tp>
a09bb4a8
JW
107 using _Manager = __conditional_t<_Internal<_Tp>::value,
108 _Manager_internal<_Tp>,
109 _Manager_external<_Tp>>;
52e86221 110
d1462b07
JW
111 template<typename _Tp, typename _VTp = decay_t<_Tp>>
112 using _Decay_if_not_any = enable_if_t<!is_same_v<_VTp, any>, _VTp>;
52e86221 113
ca9e949f
VV
114 /// Emplace with an object created from @p __args as the contained object.
115 template <typename _Tp, typename... _Args,
116 typename _Mgr = _Manager<_Tp>>
117 void __do_emplace(_Args&&... __args)
118 {
119 reset();
ca9e949f 120 _Mgr::_S_create(_M_storage, std::forward<_Args>(__args)...);
73ebece3 121 _M_manager = &_Mgr::_S_manage;
ca9e949f
VV
122 }
123
124 /// Emplace with an object created from @p __il and @p __args as
125 /// the contained object.
126 template <typename _Tp, typename _Up, typename... _Args,
127 typename _Mgr = _Manager<_Tp>>
128 void __do_emplace(initializer_list<_Up> __il, _Args&&... __args)
129 {
130 reset();
d1462b07 131 _Mgr::_S_create(_M_storage, __il, std::forward<_Args>(__args)...);
73ebece3 132 _M_manager = &_Mgr::_S_manage;
ca9e949f
VV
133 }
134
d1462b07
JW
135 template <typename _Res, typename _Tp, typename... _Args>
136 using __any_constructible
137 = enable_if<__and_<is_copy_constructible<_Tp>,
138 is_constructible<_Tp, _Args...>>::value,
139 _Res>;
140
141 template <typename _Tp, typename... _Args>
142 using __any_constructible_t
143 = typename __any_constructible<bool, _Tp, _Args...>::type;
144
145 template<typename _VTp, typename... _Args>
146 using __emplace_t
147 = typename __any_constructible<_VTp&, _VTp, _Args...>::type;
148
52e86221
VV
149 public:
150 // construct/destruct
151
152 /// Default constructor, creates an empty object.
25a69162 153 constexpr any() noexcept : _M_manager(nullptr) { }
52e86221
VV
154
155 /// Copy constructor, copies the state of @p __other
156 any(const any& __other)
157 {
25a69162 158 if (!__other.has_value())
52e86221
VV
159 _M_manager = nullptr;
160 else
161 {
162 _Arg __arg;
163 __arg._M_any = this;
164 __other._M_manager(_Op_clone, &__other, &__arg);
165 }
166 }
167
168 /**
169 * @brief Move constructor, transfer the state from @p __other
170 *
25a69162 171 * @post @c !__other.has_value() (this postcondition is a GNU extension)
52e86221
VV
172 */
173 any(any&& __other) noexcept
174 {
25a69162 175 if (!__other.has_value())
52e86221
VV
176 _M_manager = nullptr;
177 else
178 {
179 _Arg __arg;
180 __arg._M_any = this;
181 __other._M_manager(_Op_xfer, &__other, &__arg);
182 }
183 }
184
185 /// Construct with a copy of @p __value as the contained object.
d1462b07
JW
186 template <typename _Tp, typename _VTp = _Decay_if_not_any<_Tp>,
187 typename _Mgr = _Manager<_VTp>,
6da36b7d
JW
188 typename = _Require<__not_<__is_in_place_type<_VTp>>,
189 is_copy_constructible<_VTp>>>
d1462b07 190 any(_Tp&& __value)
52e86221
VV
191 : _M_manager(&_Mgr::_S_manage)
192 {
d1462b07 193 _Mgr::_S_create(_M_storage, std::forward<_Tp>(__value));
52e86221
VV
194 }
195
25a69162 196 /// Construct with an object created from @p __args as the contained object.
d1462b07
JW
197 template <typename _Tp, typename... _Args, typename _VTp = decay_t<_Tp>,
198 typename _Mgr = _Manager<_VTp>,
199 __any_constructible_t<_VTp, _Args&&...> = false>
1725d05d 200 explicit
d1462b07 201 any(in_place_type_t<_Tp>, _Args&&... __args)
25a69162
VV
202 : _M_manager(&_Mgr::_S_manage)
203 {
d1462b07 204 _Mgr::_S_create(_M_storage, std::forward<_Args>(__args)...);
25a69162
VV
205 }
206
207 /// Construct with an object created from @p __il and @p __args as
208 /// the contained object.
d1462b07
JW
209 template <typename _Tp, typename _Up, typename... _Args,
210 typename _VTp = decay_t<_Tp>, typename _Mgr = _Manager<_VTp>,
14f26c75 211 __any_constructible_t<_VTp, initializer_list<_Up>&,
25a69162 212 _Args&&...> = false>
1725d05d 213 explicit
d1462b07 214 any(in_place_type_t<_Tp>, initializer_list<_Up> __il, _Args&&... __args)
25a69162
VV
215 : _M_manager(&_Mgr::_S_manage)
216 {
d1462b07 217 _Mgr::_S_create(_M_storage, __il, std::forward<_Args>(__args)...);
25a69162
VV
218 }
219
220 /// Destructor, calls @c reset()
221 ~any() { reset(); }
52e86221
VV
222
223 // assignments
224
225 /// Copy the state of another object.
d1462b07
JW
226 any&
227 operator=(const any& __rhs)
52e86221 228 {
1725d05d 229 *this = any(__rhs);
52e86221
VV
230 return *this;
231 }
232
233 /**
234 * @brief Move assignment operator
235 *
25a69162 236 * @post @c !__rhs.has_value() (not guaranteed for other implementations)
52e86221 237 */
d1462b07
JW
238 any&
239 operator=(any&& __rhs) noexcept
52e86221 240 {
25a69162
VV
241 if (!__rhs.has_value())
242 reset();
52e86221
VV
243 else if (this != &__rhs)
244 {
1725d05d 245 reset();
52e86221
VV
246 _Arg __arg;
247 __arg._M_any = this;
248 __rhs._M_manager(_Op_xfer, &__rhs, &__arg);
249 }
250 return *this;
251 }
252
253 /// Store a copy of @p __rhs as the contained object.
d1462b07
JW
254 template<typename _Tp>
255 enable_if_t<is_copy_constructible<_Decay_if_not_any<_Tp>>::value, any&>
256 operator=(_Tp&& __rhs)
52e86221 257 {
d1462b07 258 *this = any(std::forward<_Tp>(__rhs));
52e86221
VV
259 return *this;
260 }
261
25a69162 262 /// Emplace with an object created from @p __args as the contained object.
d1462b07
JW
263 template <typename _Tp, typename... _Args>
264 __emplace_t<decay_t<_Tp>, _Args...>
ca9e949f 265 emplace(_Args&&... __args)
25a69162 266 {
d1462b07
JW
267 using _VTp = decay_t<_Tp>;
268 __do_emplace<_VTp>(std::forward<_Args>(__args)...);
f6bb145c 269 return *any::_Manager<_VTp>::_S_access(_M_storage);
25a69162
VV
270 }
271
272 /// Emplace with an object created from @p __il and @p __args as
273 /// the contained object.
d1462b07 274 template <typename _Tp, typename _Up, typename... _Args>
14f26c75 275 __emplace_t<decay_t<_Tp>, initializer_list<_Up>&, _Args&&...>
ca9e949f 276 emplace(initializer_list<_Up> __il, _Args&&... __args)
25a69162 277 {
d1462b07
JW
278 using _VTp = decay_t<_Tp>;
279 __do_emplace<_VTp, _Up>(__il, std::forward<_Args>(__args)...);
f6bb145c 280 return *any::_Manager<_VTp>::_S_access(_M_storage);
25a69162
VV
281 }
282
52e86221
VV
283 // modifiers
284
285 /// If not empty, destroy the contained object.
25a69162 286 void reset() noexcept
52e86221 287 {
25a69162 288 if (has_value())
52e86221
VV
289 {
290 _M_manager(_Op_destroy, this, nullptr);
291 _M_manager = nullptr;
292 }
293 }
294
295 /// Exchange state with another object.
296 void swap(any& __rhs) noexcept
297 {
25a69162 298 if (!has_value() && !__rhs.has_value())
52e86221
VV
299 return;
300
25a69162 301 if (has_value() && __rhs.has_value())
52e86221
VV
302 {
303 if (this == &__rhs)
304 return;
305
306 any __tmp;
307 _Arg __arg;
308 __arg._M_any = &__tmp;
309 __rhs._M_manager(_Op_xfer, &__rhs, &__arg);
310 __arg._M_any = &__rhs;
311 _M_manager(_Op_xfer, this, &__arg);
312 __arg._M_any = this;
313 __tmp._M_manager(_Op_xfer, &__tmp, &__arg);
314 }
315 else
316 {
25a69162
VV
317 any* __empty = !has_value() ? this : &__rhs;
318 any* __full = !has_value() ? &__rhs : this;
52e86221
VV
319 _Arg __arg;
320 __arg._M_any = __empty;
321 __full->_M_manager(_Op_xfer, __full, &__arg);
322 }
323 }
324
325 // observers
326
327 /// Reports whether there is a contained object or not.
25a69162 328 bool has_value() const noexcept { return _M_manager != nullptr; }
52e86221
VV
329
330#if __cpp_rtti
331 /// The @c typeid of the contained object, or @c typeid(void) if empty.
332 const type_info& type() const noexcept
333 {
25a69162 334 if (!has_value())
52e86221
VV
335 return typeid(void);
336 _Arg __arg;
337 _M_manager(_Op_get_type_info, this, &__arg);
338 return *__arg._M_typeinfo;
339 }
340#endif
341
6667d5fe 342 /// @cond undocumented
52e86221
VV
343 template<typename _Tp>
344 static constexpr bool __is_valid_cast()
345 { return __or_<is_reference<_Tp>, is_copy_constructible<_Tp>>::value; }
6667d5fe 346 /// @endcond
52e86221
VV
347
348 private:
349 enum _Op {
350 _Op_access, _Op_get_type_info, _Op_clone, _Op_destroy, _Op_xfer
351 };
352
353 union _Arg
354 {
355 void* _M_obj;
356 const std::type_info* _M_typeinfo;
357 any* _M_any;
358 };
359
360 void (*_M_manager)(_Op, const any*, _Arg*);
361 _Storage _M_storage;
362
6667d5fe 363 /// @cond undocumented
52e86221
VV
364 template<typename _Tp>
365 friend void* __any_caster(const any* __any);
6667d5fe 366 /// @endcond
52e86221
VV
367
368 // Manage in-place contained object.
369 template<typename _Tp>
370 struct _Manager_internal
371 {
372 static void
373 _S_manage(_Op __which, const any* __anyp, _Arg* __arg);
374
375 template<typename _Up>
376 static void
377 _S_create(_Storage& __storage, _Up&& __value)
378 {
379 void* __addr = &__storage._M_buffer;
380 ::new (__addr) _Tp(std::forward<_Up>(__value));
381 }
25a69162
VV
382
383 template<typename... _Args>
384 static void
385 _S_create(_Storage& __storage, _Args&&... __args)
386 {
387 void* __addr = &__storage._M_buffer;
388 ::new (__addr) _Tp(std::forward<_Args>(__args)...);
389 }
f6bb145c
TA
390
391 static _Tp*
392 _S_access(const _Storage& __storage)
393 {
394 // The contained object is in __storage._M_buffer
395 const void* __addr = &__storage._M_buffer;
396 return static_cast<_Tp*>(const_cast<void*>(__addr));
397 }
52e86221
VV
398 };
399
400 // Manage external contained object.
401 template<typename _Tp>
402 struct _Manager_external
403 {
404 static void
405 _S_manage(_Op __which, const any* __anyp, _Arg* __arg);
406
407 template<typename _Up>
408 static void
409 _S_create(_Storage& __storage, _Up&& __value)
410 {
411 __storage._M_ptr = new _Tp(std::forward<_Up>(__value));
412 }
25a69162
VV
413 template<typename... _Args>
414 static void
415 _S_create(_Storage& __storage, _Args&&... __args)
416 {
417 __storage._M_ptr = new _Tp(std::forward<_Args>(__args)...);
418 }
f6bb145c
TA
419 static _Tp*
420 _S_access(const _Storage& __storage)
421 {
422 // The contained object is in *__storage._M_ptr
423 return static_cast<_Tp*>(__storage._M_ptr);
424 }
52e86221
VV
425 };
426 };
427
428 /// Exchange the states of two @c any objects.
429 inline void swap(any& __x, any& __y) noexcept { __x.swap(__y); }
430
25a69162
VV
431 /// Create an any holding a @c _Tp constructed from @c __args.
432 template <typename _Tp, typename... _Args>
433 any make_any(_Args&&... __args)
434 {
627a2f59 435 return any(in_place_type<_Tp>, std::forward<_Args>(__args)...);
25a69162
VV
436 }
437
438 /// Create an any holding a @c _Tp constructed from @c __il and @c __args.
439 template <typename _Tp, typename _Up, typename... _Args>
440 any make_any(initializer_list<_Up> __il, _Args&&... __args)
441 {
627a2f59 442 return any(in_place_type<_Tp>, __il, std::forward<_Args>(__args)...);
25a69162
VV
443 }
444
52e86221
VV
445 /**
446 * @brief Access the contained object.
447 *
448 * @tparam _ValueType A const-reference or CopyConstructible type.
449 * @param __any The object to access.
450 * @return The contained object.
451 * @throw bad_any_cast If <code>
452 * __any.type() != typeid(remove_reference_t<_ValueType>)
453 * </code>
454 */
455 template<typename _ValueType>
456 inline _ValueType any_cast(const any& __any)
457 {
6791489e 458 using _Up = __remove_cvref_t<_ValueType>;
52e86221
VV
459 static_assert(any::__is_valid_cast<_ValueType>(),
460 "Template argument must be a reference or CopyConstructible type");
23c3a059
VV
461 static_assert(is_constructible_v<_ValueType, const _Up&>,
462 "Template argument must be constructible from a const value.");
463 auto __p = any_cast<_Up>(&__any);
52e86221 464 if (__p)
62549523 465 return static_cast<_ValueType>(*__p);
52e86221
VV
466 __throw_bad_any_cast();
467 }
468
469 /**
470 * @brief Access the contained object.
471 *
472 * @tparam _ValueType A reference or CopyConstructible type.
473 * @param __any The object to access.
474 * @return The contained object.
475 * @throw bad_any_cast If <code>
476 * __any.type() != typeid(remove_reference_t<_ValueType>)
477 * </code>
478 *
479 * @{
480 */
481 template<typename _ValueType>
482 inline _ValueType any_cast(any& __any)
483 {
6791489e 484 using _Up = __remove_cvref_t<_ValueType>;
52e86221
VV
485 static_assert(any::__is_valid_cast<_ValueType>(),
486 "Template argument must be a reference or CopyConstructible type");
23c3a059
VV
487 static_assert(is_constructible_v<_ValueType, _Up&>,
488 "Template argument must be constructible from an lvalue.");
489 auto __p = any_cast<_Up>(&__any);
52e86221 490 if (__p)
62549523 491 return static_cast<_ValueType>(*__p);
52e86221
VV
492 __throw_bad_any_cast();
493 }
494
23c3a059 495 template<typename _ValueType>
52e86221
VV
496 inline _ValueType any_cast(any&& __any)
497 {
6791489e 498 using _Up = __remove_cvref_t<_ValueType>;
52e86221
VV
499 static_assert(any::__is_valid_cast<_ValueType>(),
500 "Template argument must be a reference or CopyConstructible type");
23c3a059
VV
501 static_assert(is_constructible_v<_ValueType, _Up>,
502 "Template argument must be constructible from an rvalue.");
503 auto __p = any_cast<_Up>(&__any);
52e86221 504 if (__p)
62549523 505 return static_cast<_ValueType>(std::move(*__p));
52e86221
VV
506 __throw_bad_any_cast();
507 }
f0b88346 508 /// @}
52e86221 509
aa573a6a 510 /// @cond undocumented
52e86221
VV
511 template<typename _Tp>
512 void* __any_caster(const any* __any)
513 {
92750002
JW
514 // any_cast<T> returns non-null if __any->type() == typeid(T) and
515 // typeid(T) ignores cv-qualifiers so remove them:
516 using _Up = remove_cv_t<_Tp>;
517 // The contained value has a decayed type, so if decay_t<U> is not U,
518 // then it's not possible to have a contained value of type U:
519 if constexpr (!is_same_v<decay_t<_Up>, _Up>)
520 return nullptr;
521 // Only copy constructible types can be used for contained values:
522 else if constexpr (!is_copy_constructible_v<_Up>)
523 return nullptr;
aa573a6a
JW
524 // First try comparing function addresses, which works without RTTI
525 else if (__any->_M_manager == &any::_Manager<_Up>::_S_manage
526#if __cpp_rtti
527 || __any->type() == typeid(_Tp)
528#endif
529 )
38a9e5a6 530 {
f6bb145c 531 return any::_Manager<_Up>::_S_access(__any->_M_storage);
38a9e5a6
JW
532 }
533 return nullptr;
52e86221 534 }
aa573a6a 535 /// @endcond
52e86221
VV
536
537 /**
538 * @brief Access the contained object.
539 *
540 * @tparam _ValueType The type of the contained object.
541 * @param __any A pointer to the object to access.
542 * @return The address of the contained object if <code>
543 * __any != nullptr && __any.type() == typeid(_ValueType)
544 * </code>, otherwise a null pointer.
545 *
546 * @{
547 */
548 template<typename _ValueType>
549 inline const _ValueType* any_cast(const any* __any) noexcept
550 {
f9bfdfa2
JW
551 if constexpr (is_object_v<_ValueType>)
552 if (__any)
553 return static_cast<_ValueType*>(__any_caster<_ValueType>(__any));
52e86221
VV
554 return nullptr;
555 }
556
557 template<typename _ValueType>
558 inline _ValueType* any_cast(any* __any) noexcept
559 {
f9bfdfa2
JW
560 if constexpr (is_object_v<_ValueType>)
561 if (__any)
562 return static_cast<_ValueType*>(__any_caster<_ValueType>(__any));
52e86221
VV
563 return nullptr;
564 }
f0b88346 565 /// @}
52e86221
VV
566
567 template<typename _Tp>
568 void
569 any::_Manager_internal<_Tp>::
570 _S_manage(_Op __which, const any* __any, _Arg* __arg)
571 {
572 // The contained object is in _M_storage._M_buffer
573 auto __ptr = reinterpret_cast<const _Tp*>(&__any->_M_storage._M_buffer);
574 switch (__which)
575 {
576 case _Op_access:
577 __arg->_M_obj = const_cast<_Tp*>(__ptr);
578 break;
579 case _Op_get_type_info:
580#if __cpp_rtti
581 __arg->_M_typeinfo = &typeid(_Tp);
582#endif
583 break;
584 case _Op_clone:
585 ::new(&__arg->_M_any->_M_storage._M_buffer) _Tp(*__ptr);
586 __arg->_M_any->_M_manager = __any->_M_manager;
587 break;
588 case _Op_destroy:
589 __ptr->~_Tp();
590 break;
591 case _Op_xfer:
1725d05d
VV
592 ::new(&__arg->_M_any->_M_storage._M_buffer) _Tp
593 (std::move(*const_cast<_Tp*>(__ptr)));
52e86221
VV
594 __ptr->~_Tp();
595 __arg->_M_any->_M_manager = __any->_M_manager;
596 const_cast<any*>(__any)->_M_manager = nullptr;
597 break;
598 }
599 }
600
601 template<typename _Tp>
602 void
603 any::_Manager_external<_Tp>::
604 _S_manage(_Op __which, const any* __any, _Arg* __arg)
605 {
606 // The contained object is *_M_storage._M_ptr
607 auto __ptr = static_cast<const _Tp*>(__any->_M_storage._M_ptr);
608 switch (__which)
609 {
610 case _Op_access:
611 __arg->_M_obj = const_cast<_Tp*>(__ptr);
612 break;
613 case _Op_get_type_info:
614#if __cpp_rtti
615 __arg->_M_typeinfo = &typeid(_Tp);
616#endif
617 break;
618 case _Op_clone:
619 __arg->_M_any->_M_storage._M_ptr = new _Tp(*__ptr);
620 __arg->_M_any->_M_manager = __any->_M_manager;
621 break;
622 case _Op_destroy:
623 delete __ptr;
624 break;
625 case _Op_xfer:
626 __arg->_M_any->_M_storage._M_ptr = __any->_M_storage._M_ptr;
627 __arg->_M_any->_M_manager = __any->_M_manager;
628 const_cast<any*>(__any)->_M_manager = nullptr;
629 break;
630 }
631 }
632
633 /// @}
73ebece3 634
10f26de9
JW
635 namespace __detail::__variant
636 {
637 template<typename> struct _Never_valueless_alt; // see <variant>
638
639 // Provide the strong exception-safety guarantee when emplacing an
640 // any into a variant.
641 template<>
642 struct _Never_valueless_alt<std::any>
643 : std::true_type
644 { };
645 } // namespace __detail::__variant
646
52e86221
VV
647_GLIBCXX_END_NAMESPACE_VERSION
648} // namespace std
649
10f26de9 650#endif // C++17
52e86221 651#endif // _GLIBCXX_ANY
This page took 0.709129 seconds and 5 git commands to generate.