patrick
/
plasp
Archived
1
0
Fork 0

Minor formatting.

This commit is contained in:
Patrick Lühne 2017-06-22 22:48:25 +02:00
parent e93085d88a
commit ec546758a8
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
1 changed files with 10 additions and 10 deletions

View File

@ -87,7 +87,7 @@ struct Function
Function(const char *name) Function(const char *name)
: name{name} : name{name}
{ {
}; }
const char *name; const char *name;
}; };
@ -109,7 +109,7 @@ struct Keyword
Keyword(const char *name) Keyword(const char *name)
: name{name} : name{name}
{ {
}; }
const char *name; const char *name;
}; };
@ -131,7 +131,7 @@ struct Operator
Operator(const char *name) Operator(const char *name)
: name{name} : name{name}
{ {
}; }
const char *name; const char *name;
}; };
@ -151,7 +151,7 @@ struct Number
Number(T value) Number(T value)
: value{value} : value{value}
{ {
}; }
T value; T value;
}; };
@ -174,7 +174,7 @@ struct Variable
Variable(const char *name) Variable(const char *name)
: name{name} : name{name}
{ {
}; }
const char *name; const char *name;
}; };
@ -196,7 +196,7 @@ struct String
String(const char *content) String(const char *content)
: content{content} : content{content}
{ {
}; }
const char *content; const char *content;
}; };
@ -218,7 +218,7 @@ struct Boolean
Boolean(const char *value) Boolean(const char *value)
: value{value} : value{value}
{ {
}; }
const char *value; const char *value;
}; };
@ -240,7 +240,7 @@ struct Reserved
Reserved(const char *name) Reserved(const char *name)
: name{name} : name{name}
{ {
}; }
const char *name; const char *name;
}; };
@ -262,7 +262,7 @@ struct Heading1
Heading1(const char *content) Heading1(const char *content)
: content{content} : content{content}
{ {
}; }
const char *content; const char *content;
}; };
@ -287,7 +287,7 @@ struct Heading2
Heading2(const char *content) Heading2(const char *content)
: content{content} : content{content}
{ {
}; }
const char *content; const char *content;
}; };