fixed gcc pedantic warnings

This commit is contained in:
gabime 2014-11-24 01:38:29 +02:00
parent 4cb6aa90b2
commit 6cda714e4a
3 changed files with 6 additions and 6 deletions

View File

@ -29,7 +29,7 @@
#include "spdlog/spdlog.h"
int main_(int, char* [])
int main(int, char* [])
{
namespace spd = spdlog;

View File

@ -57,8 +57,8 @@ protected:
void _stop() override;
private:
log_clock::duration _shutdown_duration;
std::unique_ptr<sinks::async_sink> _as;
log_clock::duration _shutdown_duration;
};
}

View File

@ -35,15 +35,15 @@
template<class It>
inline spdlog::async_logger::async_logger(const std::string& name, const It& begin, const It& end, size_t queue_size, const log_clock::duration& shutdown_duration) :
logger(name, begin, end),
inline spdlog::async_logger::async_logger(const std::string& logger_name, const It& begin, const It& end, size_t queue_size, const log_clock::duration& shutdown_duration) :
logger(logger_name, begin, end),
_shutdown_duration(shutdown_duration),
_as(std::unique_ptr<sinks::async_sink>(new sinks::async_sink(queue_size)))
{
_as->set_formatter(_formatter);
for (auto &s : _sinks)
_as->add_sink(s);
};
}
inline spdlog::async_logger::async_logger(const std::string& logger_name, sinks_init_list sinks, size_t queue_size, const log_clock::duration& shutdown_duration) :
async_logger(logger_name, sinks.begin(), sinks.end(), queue_size, shutdown_duration) {}
@ -75,4 +75,4 @@ inline void spdlog::async_logger::_stop()
{
set_level(level::OFF);
_as->shutdown(_shutdown_duration);
}
}