Created
          December 19, 2013 20:32 
        
      - 
      
- 
        Save jdeng/8045792 to your computer and use it in GitHub Desktop. 
Revisions
- 
        jdeng created this gist Dec 19, 2013 .There are no files selected for viewingThis file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ #pragma once #include <system_error> namespace boost { namespace system { using error_category = std::error_category; using error_code = std::error_code; using error_condition = std::error_condition; using system_error = std::system_error; using errc = std::errc; using std::system_category; using std::generic_category; template <class T> struct is_error_code_enum : public std::is_error_code_enum<T> {}; template <class T> struct is_error_condition_enum : public std::is_error_condition_enum<T> {}; using std::make_error_code; using std::make_error_condition; }}