Fix build breakage from my previous commit.

Will discuss with Chris...


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60545 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Steve Naroff 2008-12-04 19:10:03 +00:00
Родитель a96ac060de
Коммит 3fa1fff997
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -15,7 +15,6 @@
#define LLVM_CLANG_AST_EXPROBJC_H
#include "clang/AST/Expr.h"
#include "clang/AST/DeclObjC.h"
#include "clang/Basic/IdentifierTable.h"
namespace clang {
@ -214,9 +213,7 @@ public:
}
virtual SourceRange getSourceRange() const {
unsigned IDLen = AsProperty->getIdentifier()->getLength();
return SourceRange(getBase()->getLocStart(),
IdLoc.getFileLocWithOffset(IDLen-1));
return SourceRange(getBase()->getLocStart(), IdLoc);
}
const Expr *getBase() const { return cast<Expr>(Base); }
Expr *getBase() { return cast<Expr>(Base); }