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