diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-01-14 18:11:35 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-01-14 18:11:35 +0000 |
commit | 5d5480380d7b7c3590a0283ddf239220e514e576 (patch) | |
tree | d5f31468ead3add5ec05f23b74d0e9a3dec2fa96 /include/clang/Analysis/PathSensitive/ExplodedGraph.h | |
parent | bdd30c26bd93a89ae0fe125e9aae8b7c05e55324 (diff) |
Removed 'inline' keywords from methods now defined in ExplodedGraph.cpp.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45965 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Analysis/PathSensitive/ExplodedGraph.h')
-rw-r--r-- | include/clang/Analysis/PathSensitive/ExplodedGraph.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/clang/Analysis/PathSensitive/ExplodedGraph.h b/include/clang/Analysis/PathSensitive/ExplodedGraph.h index 1a9ec32f60..d2241dca23 100644 --- a/include/clang/Analysis/PathSensitive/ExplodedGraph.h +++ b/include/clang/Analysis/PathSensitive/ExplodedGraph.h @@ -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); }; |