Minor formatting.
This commit is contained in:
parent
e93085d88a
commit
ec546758a8
@ -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;
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user