Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Type definition system_error

system_error

Synopsis

// In header: <boost/dll/config.hpp>


typedef std::conditional_t< BOOST_DLL_USE_STD_FS, std::system_error, boost::system::system_error > system_error;

Description

Alias to std::system_error if BOOST_DLL_USE_STD_FS is defined by user. Alias to boost::system::system_error otherwise.


PrevUpHomeNext