diff --git a/lib/pddlparse/include/pddlparse/AST.h b/lib/pddlparse/include/pddlparse/AST.h index d08e18c..210f982 100644 --- a/lib/pddlparse/include/pddlparse/AST.h +++ b/lib/pddlparse/include/pddlparse/AST.h @@ -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)