clang-format

This commit is contained in:
gabime 2019-08-27 20:22:07 +03:00
parent c55336e78d
commit c97c025adb
11 changed files with 82 additions and 88 deletions

View File

@ -83,4 +83,3 @@ SPDLOG_INLINE void spdlog::async_logger::backend_flush_()
SPDLOG_LOGGER_CATCH()
}
}

View File

@ -49,7 +49,6 @@ public:
async_logger(std::string logger_name, sink_ptr single_sink, std::weak_ptr<details::thread_pool> tp,
async_overflow_policy overflow_policy = async_overflow_policy::block);
protected:
void sink_it_(const details::log_msg &msg) override;
void flush_() override;

View File

@ -22,11 +22,13 @@ class backtracer
public:
explicit backtracer(size_t n_messages)
: n_messages_{n_messages}, messages_{n_messages}
: n_messages_{n_messages}
, messages_{n_messages}
{}
backtracer(const backtracer &other):
n_messages_{other.n_messages_}, messages_{other.messages_}
backtracer(const backtracer &other)
: n_messages_{other.n_messages_}
, messages_{other.messages_}
{}
size_t n_messages() const

View File

@ -356,7 +356,6 @@ public:
// error handler
void set_error_handler(err_handler);
protected:
std::string name_;
std::vector<sink_ptr> sinks_;

View File

@ -2,9 +2,6 @@
#include "test_sink.h"
#include "spdlog/async.h"
TEST_CASE("bactrace1", "[bactrace]")
{
@ -34,7 +31,6 @@ TEST_CASE("bactrace1", "[bactrace]")
REQUIRE(test_sink->lines()[7] == "****************** Backtrace End ********************");
}
TEST_CASE("bactrace-async", "[bactrace]")
{
using spdlog::sinks::test_sink_mt;
@ -67,4 +63,3 @@ TEST_CASE("bactrace-async", "[bactrace]")
REQUIRE(test_sink->lines()[6] == "debug message 99");
REQUIRE(test_sink->lines()[7] == "****************** Backtrace End ********************");
}

View File

@ -19,6 +19,7 @@ template<class Mutex>
class test_sink : public base_sink<Mutex>
{
const size_t lines_to_save = 100;
public:
size_t msg_counter()
{
@ -45,7 +46,6 @@ public:
return lines_;
}
protected:
void sink_it_(const details::log_msg &msg) override
{