Advertisement
Guest User

Untitled

a guest
Jul 30th, 2013
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #pragma once
  2.  
  3. namespace Wide {
  4. namespace Util {
  5. void DebugBreak() {
  6. #ifdef _MSC_VER
  7. __debugbreak();
  8. #else
  9. throw std::runtime_error("Internal Compiler Error: A problem occurred and the compiler requested the attention of the debugger.");
  10. #endif
  11. }
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement