MCPcopy Create free account
hub / github.com/boostorg/filesystem / report_system_error

Function report_system_error

example/error_demo.cpp:29–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27namespace
28{
29 void report_system_error(const system_error& ex)
30 {
31 cout << " threw system_error:\n"
32 << " ex.code().value() is " << ex.code().value() << '\n'
33 << " ex.code().category().name() is " << ex.code().category().name() << '\n'
34 << " ex.what() is " << ex.what() << '\n'
35 ;
36 }
37
38 void report_filesystem_error(const system_error& ex)
39 {

Callers

nothing calls this directly

Calls 1

nameMethod · 0.80

Tested by

no test coverage detected