patrick
/
plasp
Archived
1
0
Fork 0

Removed unused class.

This commit is contained in:
Patrick Lühne 2017-06-22 23:18:43 +02:00
parent ec546758a8
commit 59dc239c67
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
1 changed files with 0 additions and 17 deletions

View File

@ -61,23 +61,6 @@ struct ConstantDeclaration
////////////////////////////////////////////////////////////////////////////////////////////////////
struct Dummy
{
explicit Dummy(std::string name)
: name{name}
{
}
Dummy(const Dummy &other) = delete;
Dummy &operator=(const Dummy &&other) = delete;
Dummy(Dummy &&other) = default;
Dummy &operator=(Dummy &&other) = default;
std::string name;
};
////////////////////////////////////////////////////////////////////////////////////////////////////
struct PrimitiveType
{
explicit PrimitiveType(PrimitiveTypeDeclaration *declaration)