Commit a822c716 by Anton Danielsson

Removed default constructor, copy constructor and assignment operator for CheckHandler.

parent 96ca9a7a
...@@ -30,6 +30,9 @@ public: ...@@ -30,6 +30,9 @@ public:
std::abort(); std::abort();
} }
CheckHandler & operator=(const CheckHandler&) = delete;
CheckHandler(const CheckHandler&) = delete;
CheckHandler() = delete;
private: private:
std::ostream& log_; std::ostream& log_;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment