mirror of
https://github.com/google/benchmark.git
synced 2025-03-04 22:30:13 +08:00
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();
|
std::abort();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CheckHandler & operator=(const CheckHandler&) = delete;
|
||||||
|
CheckHandler(const CheckHandler&) = delete;
|
||||||
|
CheckHandler() = delete;
|
||||||
private:
|
private:
|
||||||
std::ostream& log_;
|
std::ostream& log_;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user