Searched refs:__what (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__filesystem/ |
H A D | filesystem_error.h | 32 _LIBCPP_HIDE_FROM_ABI filesystem_error(const string& __what, error_code __ec) in filesystem_error() argument 33 : system_error(__ec, __what), __storage_(make_shared<_Storage>(path(), path())) { in filesystem_error() 37 _LIBCPP_HIDE_FROM_ABI filesystem_error(const string& __what, const path& __p1, error_code __ec) in filesystem_error() argument 38 : system_error(__ec, __what), __storage_(make_shared<_Storage>(__p1, path())) { in filesystem_error() 42 …_LIBCPP_HIDE_FROM_ABI filesystem_error(const string& __what, const path& __p1, const path& __p2, e… in filesystem_error() argument 43 : system_error(__ec, __what), __storage_(make_shared<_Storage>(__p1, __p2)) { in filesystem_error()
|