From ec546758a8246c95a4d45812c7dbf706fe17d6d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Thu, 22 Jun 2017 22:48:25 +0200 Subject: [PATCH] Minor formatting. --- lib/colorlog/include/colorlog/Formatting.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/colorlog/include/colorlog/Formatting.h b/lib/colorlog/include/colorlog/Formatting.h index 2d368f1..3e5435f 100644 --- a/lib/colorlog/include/colorlog/Formatting.h +++ b/lib/colorlog/include/colorlog/Formatting.h @@ -87,7 +87,7 @@ struct Function Function(const char *name) : name{name} { - }; + } const char *name; }; @@ -109,7 +109,7 @@ struct Keyword Keyword(const char *name) : name{name} { - }; + } const char *name; }; @@ -131,7 +131,7 @@ struct Operator Operator(const char *name) : name{name} { - }; + } const char *name; }; @@ -151,7 +151,7 @@ struct Number Number(T value) : value{value} { - }; + } T value; }; @@ -174,7 +174,7 @@ struct Variable Variable(const char *name) : name{name} { - }; + } const char *name; }; @@ -196,7 +196,7 @@ struct String String(const char *content) : content{content} { - }; + } const char *content; }; @@ -218,7 +218,7 @@ struct Boolean Boolean(const char *value) : value{value} { - }; + } const char *value; }; @@ -240,7 +240,7 @@ struct Reserved Reserved(const char *name) : name{name} { - }; + } const char *name; }; @@ -262,7 +262,7 @@ struct Heading1 Heading1(const char *content) : content{content} { - }; + } const char *content; }; @@ -287,7 +287,7 @@ struct Heading2 Heading2(const char *content) : content{content} { - }; + } const char *content; };