...世界上最受推崇和设计精良的 C++ 库项目之一。 — Herb Sutter 和 Andrei Alexandrescu,《C++ 编码规范
...世界上最受推崇和设计精良的 C++ 库项目之一。
error_code
// In header: <boost/dll/config.hpp> typedef std::conditional_t< BOOST_DLL_USE_STD_FS, std::error_code, boost::system::error_code > error_code;
如果用户定义了 BOOST_DLL_USE_STD_FS,则别名为 std::error_code。否则,为 boost::system::error_code。
std::error_code