- 24 Jan, 2018 2 commits
-
-
Gabi Melman authored
Fixed spelling mistake in example.cpp
-
Ryan Carmichael authored
-
- 18 Jan, 2018 4 commits
-
-
Gabi Melman authored
A few small ANSI color improvements
-
Josh Junon authored
-
Josh Junon authored
-
Josh Junon authored
-
- 12 Jan, 2018 3 commits
-
-
Gabi Melman authored
-
gabime authored
-
gabime authored
-
- 11 Jan, 2018 3 commits
-
-
Gabi Melman authored
Use Sleep in Windows instead of sleep_for
-
Joao Moreno authored
-
Joao Moreno authored
fixes #609
-
- 03 Jan, 2018 4 commits
-
-
Gabi Melman authored
Ensure marcos always expand to expressions
-
Gabi Melman authored
Add global flush_on function
-
Sam Lunt authored
-
Sam Lunt authored
-
- 26 Dec, 2017 3 commits
-
-
Gabi Melman authored
Issue fix for spdlog #595. Conversion warning.
-
Stefan Broekman authored
See: https://github.com/gabime/spdlog/issues/595 On line 85 in file sinks/wincolor_sink.h: back_color &= ~(FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE | FOREGROUND_INTENSITY); 'back_color' is of type 'WORD' (unsigned short) whereas a bitwise complement/NOT returns an int. This results in a conversion warning with -Wconversion enabled. 85:20: warning: conversion to 'WORD {aka short unsigned int}' from 'int' may alter its value [-Wconversion] back_color &= ~(FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE | FOREGROUND_INTENSITY); Possible solution: We know that the result of ~(FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE | FOREGROUND_INTENSITY) is always within the limits of an unsigned short so a simple cast should suffice (correct me if I'm wrong): back_color &= static_cast<unsigned short>(~(FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE | FOREGROUND_INTENSITY));
-
Gabi Melman authored
-
- 24 Dec, 2017 1 commit
-
-
gabime authored
-
- 23 Dec, 2017 1 commit
-
-
Gabi Melman authored
-
- 22 Dec, 2017 11 commits
-
-
Gabi Melman authored
-
gabime authored
-
gabime authored
-
gabime authored
-
gabime authored
-
gabime authored
-
gabime authored
-
https://github.com/gabime/spdloggabime authored
-
gabime authored
-
Gabi Melman authored
fix split_by_extenstion parse error extenstion
-
Force Charlie authored
-
- 20 Dec, 2017 6 commits
-
-
Gabi Melman authored
-
Gabi Melman authored
-
Gabi Melman authored
Update version strings to 0.16.0
-
Gabi Melman authored
Solve compiler warning in tests
-
Ľubomír Carik authored
Signed-off-by: Ľubomír Carik <Lubomir.Carik@anritsu.com>
-
Ľubomír Carik authored
Signed-off-by: Ľubomír Carik <Lubomir.Carik@anritsu.com>
-
- 19 Dec, 2017 2 commits