Advertisement
Guest User

Untitled

a guest
Aug 31st, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. #include <boost/type_erasure/is_placeholder.hpp>
  2. #include <boost/iterator/iterator_adaptor.hpp>
  3.  
  4. int main()
  5. {
  6. return 0;
  7. }
  8.  
  9. include/boost/type_erasure/is_placeholder.hpp:31:33: error: reference to 'use_default' is ambiguous
  10. struct is_placeholder< ::boost::use_default> : ::boost::mpl::false_ {};
  11. ^
  12. include/boost/iterator/iterator_adaptor.hpp:44:18: note: candidate found by name lookup is 'boost::use_default'
  13. using iterators::use_default;
  14. ^
  15. include/boost/type_erasure/is_placeholder.hpp:21:8: note: candidate found by name lookup is 'boost::use_default'
  16. struct use_default;
  17. ^
  18. 1 error generated.
  19.  
  20. struct use_default;
  21.  
  22. namespace iterators {
  23. struct use_default;
  24. }
  25. using iterators::use_default;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement