Commit a822c716 by Anton Danielsson

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

parent 96ca9a7a
......@@ -30,6 +30,9 @@ public:
std::abort();
}
CheckHandler & operator=(const CheckHandler&) = delete;
CheckHandler(const CheckHandler&) = delete;
CheckHandler() = delete;
private:
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