bind.cpp 732 B

12345678910111213141516171819202122232425262728293031
  1. //===-------------------------- bind.cpp ----------------------------------===//
  2. //
  3. // The LLVM Compiler Infrastructure
  4. //
  5. // This file is dual licensed under the MIT and the University of Illinois Open
  6. // Source Licenses. See LICENSE.TXT for details.
  7. //
  8. //===----------------------------------------------------------------------===//
  9. #define _LIBCPP_BUILDING_BIND
  10. #include "functional"
  11. _LIBCPP_BEGIN_NAMESPACE_STD
  12. namespace placeholders
  13. {
  14. const __ph<1> _1{};
  15. const __ph<2> _2{};
  16. const __ph<3> _3{};
  17. const __ph<4> _4{};
  18. const __ph<5> _5{};
  19. const __ph<6> _6{};
  20. const __ph<7> _7{};
  21. const __ph<8> _8{};
  22. const __ph<9> _9{};
  23. const __ph<10> _10{};
  24. } // placeholders
  25. _LIBCPP_END_NAMESPACE_STD