[cfe-dev] SourceRange for QualifiedTypeLoc

Abramo Bagnara abramo.bagnara at gmail.com
Wed May 19 04:00:21 PDT 2010


In QualifiedTypeLoc currently we have:

  SourceRange getSourceRange() const {
    return SourceRange();
  }

Taken for granted missing location of qualifiers I think that it would
be a bit better to have:

  SourceRange getSourceRange() const {
    return getUnqualifiedLoc().getSourceRange();
  }

Can I proceed in this direction?



More information about the cfe-dev mailing list