aboutsummaryrefslogtreecommitdiffstats
path: root/AST.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'AST.cpp')
-rw-r--r--AST.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/AST.cpp b/AST.cpp
index 156d51f2..0ec0eb0c 100644
--- a/AST.cpp
+++ b/AST.cpp
@@ -596,17 +596,6 @@ void ElementaryTypeNameExpression::checkTypeRequirements()
m_type = make_shared<TypeType>(Type::fromElementaryTypeName(m_typeToken));
}
-Literal::Literal(Location const& _location, Token::Value _token,
- ASTPointer<ASTString> const& _value,
- Token::Value _sub):
- PrimaryExpression(_location), m_token(_token), m_value(_value)
-{
- if (Token::isEtherSubdenomination(_sub))
- m_subDenomination = static_cast<Literal::SubDenomination>(_sub);
- else
- m_subDenomination = Literal::SubDenomination::None;
-}
-
void Literal::checkTypeRequirements()
{
m_type = Type::forLiteral(*this);