Remove unused UDQDefine constructor

This commit is contained in:
Joakim Hove 2020-10-24 11:37:14 +02:00
parent 5e6c6be3b8
commit eb208ffb78
2 changed files with 0 additions and 19 deletions

View File

@ -62,12 +62,6 @@ public:
const ParseContext& parseContext,
T&& errors);
UDQDefine(const std::string& keyword,
const KeywordLocation& location,
std::shared_ptr<UDQASTNode> astPtr,
UDQVarType type,
const std::string& string_data);
static UDQDefine serializeObject();
UDQSet eval(const UDQContext& context) const;

View File

@ -209,19 +209,6 @@ UDQDefine::UDQDefine(const UDQParams& udq_params,
}
UDQDefine::UDQDefine(const std::string& keyword,
const KeywordLocation& location,
std::shared_ptr<UDQASTNode> astPtr,
UDQVarType type,
const std::string& stringData)
: m_keyword(keyword)
, ast(astPtr)
, m_var_type(type)
, m_location(location)
, string_data(stringData)
{}
UDQDefine UDQDefine::serializeObject()
{