Fix linux_errno misspelling

[SVN r40360]
This commit is contained in:
Beman Dawes
2007-10-23 15:04:43 +00:00
parent 2f9e1cee92
commit 6eda75a19e

View File

@@ -565,12 +565,12 @@ namespace boost
namespace Linux = linux_error;
# endif
template<> struct is_error_code_enum<linux_error::linux_error_code>
template<> struct is_error_code_enum<linux_error::linux_errno>
{ static const bool value = true; };
namespace linux_error
{
inline error_code make_error_code( linux_error_code e )
inline error_code make_error_code( linux_errno e )
{ return error_code( e, system_category ); }
}