From 6eda75a19e75d7321e33737ad37fd061975e273e Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Tue, 23 Oct 2007 15:04:43 +0000 Subject: [PATCH] Fix linux_errno misspelling [SVN r40360] --- include/boost/system/error_code.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/system/error_code.hpp b/include/boost/system/error_code.hpp index 6b39d85..34ffb9e 100644 --- a/include/boost/system/error_code.hpp +++ b/include/boost/system/error_code.hpp @@ -565,12 +565,12 @@ namespace boost namespace Linux = linux_error; # endif - template<> struct is_error_code_enum + template<> struct is_error_code_enum { 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 ); } }