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
No known key found for this signature in database
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)
: 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;
};