forked from OSchip/llvm-project
Remove unused protected constructor of DeclRefExpr.
llvm-svn: 107870
This commit is contained in:
parent
242b885798
commit
ab446e1b57
|
@ -562,16 +562,10 @@ class DeclRefExpr : public Expr {
|
|||
const TemplateArgumentListInfo *TemplateArgs,
|
||||
QualType T);
|
||||
|
||||
protected:
|
||||
/// \brief Computes the type- and value-dependence flags for this
|
||||
/// declaration reference expression.
|
||||
void computeDependence();
|
||||
|
||||
DeclRefExpr(StmtClass SC, ValueDecl *d, QualType t, SourceLocation l) :
|
||||
Expr(SC, t, false, false), DecoratedD(d, 0), Loc(l) {
|
||||
computeDependence();
|
||||
}
|
||||
|
||||
public:
|
||||
DeclRefExpr(ValueDecl *d, QualType t, SourceLocation l) :
|
||||
Expr(DeclRefExprClass, t, false, false), DecoratedD(d, 0), Loc(l) {
|
||||
|
|
Loading…
Reference in New Issue