mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-26 23:01:05 +08:00
Add missing virtual/protected destructor definitions on virtual classes
Change-Id: Ic12e131e3e23d153dd5c9733d8f8c5062adbf802 Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/2259334 Commit-Queue: Eric Astor <epastor@google.com> Reviewed-by: Mark Mentovai <mark@chromium.org>
This commit is contained in:
parent
4145699874
commit
ca0fd934d9
@ -164,6 +164,7 @@ class SignalHandler {
|
|||||||
|
|
||||||
protected:
|
protected:
|
||||||
SignalHandler() = default;
|
SignalHandler() = default;
|
||||||
|
~SignalHandler() = default;
|
||||||
|
|
||||||
bool Install(const std::set<int>* unhandled_signals) {
|
bool Install(const std::set<int>* unhandled_signals) {
|
||||||
DCHECK(!handler_);
|
DCHECK(!handler_);
|
||||||
|
@ -51,7 +51,7 @@ struct Options {
|
|||||||
MachMessageServer::Persistent persistent;
|
MachMessageServer::Persistent persistent;
|
||||||
};
|
};
|
||||||
|
|
||||||
class ExceptionServer : public UniversalMachExcServer::Interface {
|
class ExceptionServer final : public UniversalMachExcServer::Interface {
|
||||||
public:
|
public:
|
||||||
ExceptionServer(const Options& options,
|
ExceptionServer(const Options& options,
|
||||||
const std::string& me,
|
const std::string& me,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user