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

Class codecvt_error_cat

src/codecvt_error_category.cpp:41–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39#endif
40
41class codecvt_error_cat final :
42 public boost::system::error_category
43{
44public:
45 // clang up to version 3.8 requires a user-defined default constructor in order to be able to declare a static constant of the error category.
46 BOOST_SYSTEM_CONSTEXPR codecvt_error_cat() noexcept {}
47 const char* name() const noexcept override;
48 std::string message(int ev) const override;
49};
50
51const char* codecvt_error_cat::name() const noexcept
52{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected