Removed 'inline' keywords from methods now defined in ExplodedGraph.cpp.

llvm-svn: 45965
This commit is contained in:
Ted Kremenek 2008-01-14 18:11:35 +00:00
parent c8dc2f781f
commit d065a790d9
1 changed files with 4 additions and 4 deletions

View File

@ -46,13 +46,13 @@ protected:
~NodeGroup();
inline ExplodedNodeImpl** begin() const;
ExplodedNodeImpl** begin() const;
inline ExplodedNodeImpl** end() const;
ExplodedNodeImpl** end() const;
inline unsigned size() const;
unsigned size() const;
inline bool empty() const;
bool empty() const;
void addNode(ExplodedNodeImpl* N);
};