blob: a3f789fccedd5306c97c72a521a0c2a37fdb3887 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _ERROR_CODE_HPP
#define _ERROR_CODE_HPP
#include <boost/system/detail/error_code.hpp>
namespace ftp {
using error_code = boost::system::error_code;
}
#endif // !_ERROR_CODE_HPP
|