Skip to content

Commit 7e2ba80

Browse files
committed
Running astyle [ci skip]
1 parent e05a9d7 commit 7e2ba80

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

lib/color.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ std::ostream& operator<<(std::ostream& os, const Color& c)
88
{
99
#ifndef _WIN32
1010
static const bool use_color = isatty(STDOUT_FILENO);
11-
if(use_color)
11+
if (use_color)
1212
return os << "\033[" << static_cast<std::size_t>(c) << "m";
1313
#endif
1414
return os;

lib/color.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@
2222
#include <ostream>
2323
#include <string>
2424

25-
enum class Color
26-
{
25+
enum class Color {
2726
Reset = 0,
2827
Bold = 1,
2928
Dim = 2,

0 commit comments

Comments
 (0)