Advertisement
Guest User

Untitled

a guest
Jan 28th, 2013
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. check-default-constuctable-copyable.cpp: In instantiation of '_check_default_and_copy_constructable<T>::_check_default_and_copy_constructable() [with T = non_default_constructable]':
  2. check-default-constuctable-copyable.cpp:42:5: required from here
  3. check-default-constuctable-copyable.cpp:10:11: error: no matching function for call to 'non_default_constructable::non_default_constructable()'
  4. check-default-constuctable-copyable.cpp:10:11: note: candidates are:
  5. check-default-constuctable-copyable.cpp:23:5: note: non_default_constructable::non_default_constructable(int)
  6. check-default-constuctable-copyable.cpp:23:5: note: candidate expects 1 argument, 0 provided
  7. check-default-constuctable-copyable.cpp:20:7: note: non_default_constructable::non_default_constructable(const non_default_constructable&)
  8. check-default-constuctable-copyable.cpp:20:7: note: candidate expects 1 argument, 0 provided
  9. check-default-constuctable-copyable.cpp: In instantiation of '_check_default_and_copy_constructable<T>::_check_default_and_copy_constructable() [with T = non_copy_constructable]':
  10. check-default-constuctable-copyable.cpp:43:5: required from here
  11. check-default-constuctable-copyable.cpp:36:5: error: 'non_copy_constructable::non_copy_constructable(const non_copy_constructable&)' is private
  12. check-default-constuctable-copyable.cpp:11:33: error: within this context
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement