mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
fix clang warnings
This commit is contained in:
parent
f6e69355fa
commit
1797a47a9f
@ -17,8 +17,8 @@
|
||||
|
||||
namespace
|
||||
{
|
||||
static bool initialized = false;
|
||||
static bool anonymize = false;
|
||||
bool initialized = false;
|
||||
bool anonymize = false;
|
||||
|
||||
void setExtras()
|
||||
{
|
||||
@ -44,7 +44,7 @@ void SentryWriter::initialize(Poco::Util::LayeredConfiguration & config)
|
||||
#if USE_SENTRY
|
||||
bool enabled = false;
|
||||
bool debug = config.getBool("send_crash_reports.debug", false);
|
||||
auto logger = &Poco::Logger::get("SentryWriter");
|
||||
auto * logger = &Poco::Logger::get("SentryWriter");
|
||||
if (config.getBool("send_crash_reports.enabled", false))
|
||||
{
|
||||
if (debug || (strlen(VERSION_OFFICIAL) > 0))
|
||||
@ -121,7 +121,7 @@ void SentryWriter::shutdown()
|
||||
void SentryWriter::onFault(int sig, const siginfo_t & info, const ucontext_t & context, const StackTrace & stack_trace)
|
||||
{
|
||||
#if USE_SENTRY
|
||||
auto logger = &Poco::Logger::get("SentryWriter");
|
||||
auto * logger = &Poco::Logger::get("SentryWriter");
|
||||
if (initialized)
|
||||
{
|
||||
const std::string & error_message = signalToErrorMessage(sig, info, context);
|
||||
|
Loading…
Reference in New Issue
Block a user