Unbreak build by including header.

llvm-svn: 74870
This commit is contained in:
Ted Kremenek 2009-07-06 22:26:23 +00:00
parent 7a76c06c20
commit fdf5d802a8
1 changed files with 11 additions and 7 deletions

View File

@ -140,12 +140,6 @@ public:
: OldCastRegion(state, region, CastToTy);
}
CastResult NewCastRegion(const GRState *state, const MemRegion *region,
QualType CastToTy);
CastResult OldCastRegion(const GRState *state, const MemRegion *region,
QualType CastToTy);
virtual const GRState *setCastType(const GRState *state, const MemRegion* R,
QualType T) {
return state;
@ -199,6 +193,16 @@ public:
/// iterBindings - Iterate over the bindings in the Store.
virtual void iterBindings(Store store, BindingsHandler& f) = 0;
private:
CastResult MakeElementRegion(const GRState *state, const MemRegion *region,
QualType pointeeTy, QualType castToTy);
CastResult NewCastRegion(const GRState *state, const MemRegion *region,
QualType CastToTy);
CastResult OldCastRegion(const GRState *state, const MemRegion *region,
QualType CastToTy);
};
// FIXME: Do we still need this?