2
0
mirror of https://github.com/boostorg/process.git synced 2026-01-31 08:22:16 +00:00

Use = default for default constructor

This commit is contained in:
Michael Jones
2019-12-05 12:41:31 -06:00
committed by GitHub
parent 6a4d2ff721
commit 5bfd2ee08c

View File

@@ -28,7 +28,7 @@ namespace detail
class codecvt_category_t : public std::error_category
{
public:
codecvt_category_t(){}
codecvt_category_t() = default;
const char* name() const noexcept override {return "codecvt";}
std::string message(int ev) const override
{