callstack.h 351 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2012-2017 Daniele Bartolini and individual contributors.
  3. * License: https://github.com/taylor001/crown/blob/master/LICENSE
  4. */
  5. #pragma once
  6. #include "string_types.h"
  7. namespace crown
  8. {
  9. namespace error
  10. {
  11. /// Fills @a ss with the current call stack.
  12. void callstack(StringStream& ss);
  13. } // namespace error
  14. } // namespace crown