You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 rivejä
241 B

  1. #pragma once
  2. #include <cpputils/mp/operations/value.h>
  3. namespace utl {
  4. namespace mp {
  5. namespace intern {
  6. template<typename C>
  7. struct has_value
  8. : c_bool<!is_default<__impl::value_impl<tag_of<C>>>::value>
  9. { };
  10. }
  11. }
  12. }