Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. thirdparty/vhacd/src/VHACD-ASYNC.cpp:307:7: error: 'thread' in namespace 'std' does not name a type
  2. std::thread *mThread{ nullptr };
  3. ^~~~~~
  4. thirdparty/vhacd/src/VHACD-ASYNC.cpp:307:2: note: 'std::thread' is defined in header '<thread>'; did you forget to '#include <thread>'?
  5. thirdparty/vhacd/src/VHACD-ASYNC.cpp:10:1:
  6. +#include <thread>
  7.  
  8. thirdparty/vhacd/src/VHACD-ASYNC.cpp:307:2:
  9. std::thread *mThread{ nullptr };
  10. ^~~
  11. thirdparty/vhacd/src/VHACD-ASYNC.cpp:315:15: error: 'mutex' in namespace 'std' does not name a type
  12. mutable std::mutex mMessageMutex;
  13. ^~~~~
  14. thirdparty/vhacd/src/VHACD-ASYNC.cpp:315:10: note: 'std::mutex' is defined in header '<mutex>'; did you forget to '#include <mutex>'?
  15. thirdparty/vhacd/src/VHACD-ASYNC.cpp:10:1:
  16. +#include <mutex>
  17.  
  18. thirdparty/vhacd/src/VHACD-ASYNC.cpp:315:10:
  19. mutable std::mutex mMessageMutex;
  20. ^~~
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement