Really fix msvc
This commit is contained in:
parent
3f2bb684ec
commit
8fb486570b
@ -16,9 +16,9 @@ namespace cpptrace {
|
|||||||
formatter();
|
formatter();
|
||||||
~formatter();
|
~formatter();
|
||||||
|
|
||||||
formatter(formatter&&) = default;
|
formatter(formatter&&);
|
||||||
formatter(const formatter&);
|
formatter(const formatter&);
|
||||||
formatter& operator=(formatter&&) = default;
|
formatter& operator=(formatter&&);
|
||||||
formatter& operator=(const formatter&);
|
formatter& operator=(const formatter&);
|
||||||
|
|
||||||
formatter& set_header(std::string);
|
formatter& set_header(std::string);
|
||||||
|
|||||||
@ -202,7 +202,9 @@ namespace cpptrace {
|
|||||||
formatter::formatter() : pimpl(std::unique_ptr<impl>(new impl)) {}
|
formatter::formatter() : pimpl(std::unique_ptr<impl>(new impl)) {}
|
||||||
formatter::~formatter() = default;
|
formatter::~formatter() = default;
|
||||||
|
|
||||||
|
formatter::formatter(formatter&&) = default;
|
||||||
formatter::formatter(const formatter& other) : pimpl(std::unique_ptr<impl>(new impl(*other.pimpl))) {}
|
formatter::formatter(const formatter& other) : pimpl(std::unique_ptr<impl>(new impl(*other.pimpl))) {}
|
||||||
|
formatter& formatter::operator=(formatter&&) = default;
|
||||||
formatter& formatter::operator=(const formatter& other) {
|
formatter& formatter::operator=(const formatter& other) {
|
||||||
pimpl = std::unique_ptr<impl>(new impl(*other.pimpl));
|
pimpl = std::unique_ptr<impl>(new impl(*other.pimpl));
|
||||||
return *this;
|
return *this;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user