Default constructor.
| 82 | public: |
| 83 | /// Default constructor. |
| 84 | error_code() |
| 85 | : value_(0), |
| 86 | category_(&system_category()) |
| 87 | { |
| 88 | } |
| 89 | |
| 90 | /// Construct with specific error code and category. |
| 91 | error_code(int v, const error_category& c) |
nothing calls this directly
no test coverage detected