Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dmd.expression: Remove Expression.op_overload member function #8798

Merged
merged 1 commit into from Oct 5, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 0 additions & 5 deletions src/dmd/expression.d
Expand Up @@ -1541,11 +1541,6 @@ extern (C++) abstract class Expression : RootObject
return false;
}

final Expression op_overload(Scope* sc)
{
return .op_overload(this, sc);
}

bool hasCode()
{
return true;
Expand Down
1 change: 0 additions & 1 deletion src/dmd/expression.h
Expand Up @@ -124,7 +124,6 @@ class Expression : public RootObject
Expression *ctfeInterpret();
int isConst();
virtual bool isBool(bool result);
Expression *op_overload(Scope *sc);

virtual bool hasCode()
{
Expand Down