utility 1021 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // -*- C++ -*-
  2. //===-------------------------- utility ----------------------------------===//
  3. //
  4. // The LLVM Compiler Infrastructure
  5. //
  6. // This file is dual licensed under the MIT and the University of Illinois Open
  7. // Source Licenses. See LICENSE.TXT for details.
  8. //
  9. //===----------------------------------------------------------------------===//
  10. #ifndef _LIBCPP_EXPERIMENTAL_UTILITY
  11. #define _LIBCPP_EXPERIMENTAL_UTILITY
  12. /*
  13. experimental/utility synopsis
  14. // C++1y
  15. #include <utility>
  16. namespace std {
  17. namespace experimental {
  18. inline namespace fundamentals_v1 {
  19. 3.1.2, erased-type placeholder
  20. struct erased_type { };
  21. } // namespace fundamentals_v1
  22. } // namespace experimental
  23. } // namespace std
  24. */
  25. #include <experimental/__config>
  26. #include <utility>
  27. #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
  28. #pragma GCC system_header
  29. #endif
  30. _LIBCPP_BEGIN_NAMESPACE_LFTS
  31. struct _LIBCPP_TYPE_VIS_ONLY erased_type { };
  32. _LIBCPP_END_NAMESPACE_LFTS
  33. #endif /* _LIBCPP_EXPERIMENTAL_UTILITY */