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
1 changed files with 3 additions and 0 deletions

View File

@ -30,6 +30,9 @@ public:
std::abort();
}
CheckHandler & operator=(const CheckHandler&) = delete;
CheckHandler(const CheckHandler&) = delete;
CheckHandler() = delete;
private:
std::ostream& log_;
};