spdlog/include/spdlog
Andre Haupt 3d291f48fa use std::abs from cstdlib which fixes a warning that occurs when compiling with clang 3.5 on 64-bit linux
in file included from ../include/spdlog/sinks/../formatter.h:57:
../include/spdlog/details/pattern_formatter_impl.h:308:26: warning: absolute value function 'abs' given an argument of type 'rep' (aka 'long') but has parameter of type 'int' which may cause truncation of value [-Wabsolute-value]
        auto secs_diff = abs((duration_cast<seconds>(diff)).count());
                         ^
../include/spdlog/details/pattern_formatter_impl.h:308:26: note: use function 'std::abs' instead
        auto secs_diff = abs((duration_cast<seconds>(diff)).count());
                         ^~~
                         std::abs
1 warning generated.
2014-11-07 10:24:17 +01:00
..
details use std::abs from cstdlib which fixes a warning that occurs when compiling with clang 3.5 on 64-bit linux 2014-11-07 10:24:17 +01:00
sinks fix in async_sink not to throw in destrcutor in case join failed 2014-11-07 09:43:28 +02:00
common.h readme 2014-11-01 03:20:54 +02:00
formatter.h Fix level 4 warnings under VS 2014-11-05 01:47:28 +02:00
logger.h Removed close() from sink to have RAII semantics 2014-11-05 23:07:20 +02:00
spdlog.h Removed close() from sink to have RAII semantics 2014-11-05 23:07:20 +02:00