void.hpp 688 B

1234567891011121314151617181920212223242526272829
  1. // Copyright Daniel Wallin, David Abrahams 2005. Use, modification and
  2. // distribution is subject to the Boost Software License, Version 1.0. (See
  3. // accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef BOOST_PARAMETER_VOID_050329_HPP
  6. #define BOOST_PARAMETER_VOID_050329_HPP
  7. namespace boost { namespace parameter {
  8. // A placemarker for "no argument passed."
  9. // MAINTAINER NOTE: Do not make this into a metafunction
  10. struct void_ {};
  11. namespace aux
  12. {
  13. inline void_& void_reference()
  14. {
  15. static void_ instance;
  16. return instance;
  17. }
  18. } // namespace aux
  19. }} // namespace boost::parameter
  20. #endif // BOOST_PARAMETER_VOID_050329_HPP