mirror of https://github.com/google/benchmark.git
Removed default constructor, copy constructor and assignment operator for CheckHandler.
This commit is contained in:
parent
96ca9a7aba
commit
a822c71655
|
@ -30,6 +30,9 @@ public:
|
|||
std::abort();
|
||||
}
|
||||
|
||||
CheckHandler & operator=(const CheckHandler&) = delete;
|
||||
CheckHandler(const CheckHandler&) = delete;
|
||||
CheckHandler() = delete;
|
||||
private:
|
||||
std::ostream& log_;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue