diff options
Diffstat (limited to '')
-rw-r--r-- | test/call_stack.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/call_stack.cpp b/test/call_stack.cpp index b094aac..fb5f7b8 100644 --- a/test/call_stack.cpp +++ b/test/call_stack.cpp @@ -5,15 +5,14 @@ #include <test_lib.hpp> -#include <boost/nowide/iostream.hpp> - #include <exception> +#include <iostream> int main() { try { test_ns::print_call_stack(); } catch (const std::exception& e) { - boost::nowide::cerr << e.what() << '\n'; + std::cerr << e.what() << '\n'; return 1; } return 0; |