Advertisement
Guest User

Untitled

a guest
Aug 7th, 2014
374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 KB | None | 0 0
  1. In file included from ../../deps/boost/include/boost/tuple/tuple.hpp:33:0,
  2. from ../../deps/boost/include/boost/thread/detail/async_func.hpp:37,
  3. from ../../deps/boost/include/boost/thread/future.hpp:22,
  4. from t.cpp:2:
  5. ../../deps/boost/include/boost/tuple/detail/tuple_basic.hpp: In function ‘typename boost::tuples::access_traits<typename boost::tuples::element<N, boost::tuples::cons<HT, TT> >::type>::const_type boost::tuples::get(const boost::tuples::cons<HT, TT>&)’:
  6. ../../deps/boost/include/boost/tuple/detail/tuple_basic.hpp:228:45: warning: typedef ‘cons_element’ locally defined but not used [-Wunused-local-typedefs]
  7. typedef BOOST_DEDUCED_TYPENAME impl::type cons_element;
  8. ^
  9. In file included from ../../deps/boost/include/boost/bind/bind.hpp:29:0,
  10. from ../../deps/boost/include/boost/bind.hpp:22,
  11. from ../../deps/boost/include/boost/thread/future.hpp:41,
  12. from t.cpp:2:
  13. ../../deps/boost/include/boost/bind/arg.hpp: In constructor ‘boost::arg<I>::arg(const T&)’:
  14. ../../deps/boost/include/boost/bind/arg.hpp:37:22: warning: typedef ‘T_must_be_placeholder’ locally defined but not used [-Wunused-local-typedefs]
  15. typedef char T_must_be_placeholder[ I == is_placeholder<T>::value? 1: -1 ];
  16. ^
  17. t.cpp: In function ‘int main()’:
  18. t.cpp:12:78: error: expected primary-expression before ‘f’
  19. const boost::unique_future<foo>& fut = boost::make_ready_future( foo f(42) );
  20. ^
  21. t.cpp:12:42: warning: unused variable ‘fut’ [-Wunused-variable]
  22. const boost::unique_future<foo>& fut = boost::make_ready_future( foo f(42) );
  23. ^
  24. In file included from ../../deps/boost/include/boost/system/system_error.hpp:14:0,
  25. from ../../deps/boost/include/boost/thread/exceptions.hpp:22,
  26. from ../../deps/boost/include/boost/thread/pthread/mutex.hpp:12,
  27. from ../../deps/boost/include/boost/thread/mutex.hpp:16,
  28. from ../../deps/boost/include/boost/thread/future.hpp:24,
  29. from t.cpp:2:
  30. ../../deps/boost/include/boost/system/error_code.hpp: At global scope:
  31. ../../deps/boost/include/boost/system/error_code.hpp:222:36: warning: ‘boost::system::posix_category’ defined but not used [-Wunused-variable]
  32. static const error_category & posix_category = generic_category();
  33. ^
  34. ../../deps/boost/include/boost/system/error_code.hpp:223:36: warning: ‘boost::system::errno_ecat’ defined but not used [-Wunused-variable]
  35. static const error_category & errno_ecat = generic_category();
  36. ^
  37. ../../deps/boost/include/boost/system/error_code.hpp:224:36: warning: ‘boost::system::native_ecat’ defined but not used [-Wunused-variable]
  38. static const error_category & native_ecat = system_category();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement