| 12345678910111213141516171819 |
- /*
- * Copyright (c) 2012-2017 Daniele Bartolini and individual contributors.
- * License: https://github.com/taylor001/crown/blob/master/LICENSE
- */
- #pragma once
- #include "string_types.h"
- namespace crown
- {
- namespace error
- {
- /// Fills @a ss with the current call stack.
- void callstack(StringStream& ss);
- } // namespace error
- } // namespace crown
|