mirror of https://github.com/procxx/kepka.git
Implement missing handlers for disabled breakpad
This commit is contained in:
parent
bd0fffa063
commit
954d5f5679
|
@ -1139,5 +1139,19 @@ namespace internal {
|
|||
internal::ProcessAnnotationRefs.erase(key);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#ifdef TDESKTOP_DISABLE_CRASH_REPORTS
|
||||
|
||||
namespace SignalHandlers {
|
||||
dump::~dump() {
|
||||
}
|
||||
const dump &operator<<(const dump &stream, const char *str) {
|
||||
return stream;
|
||||
}
|
||||
const dump &operator<<(const dump &stream, double num) {
|
||||
return stream;
|
||||
}
|
||||
}
|
||||
|
||||
#endif // TDESKTOP_DISABLE_CRASH_REPORTS
|
||||
|
|
Loading…
Reference in New Issue