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

This commit is contained in:
Anton Danielsson 2015-10-05 14:05:06 +02:00
parent 96ca9a7aba
commit a822c71655

View File

@ -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_;
}; };