diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-04-02 05:13:10 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-04-02 05:13:10 +0000 |
commit | 0e8a3c743b9b3e3039e329a1736122d3b5b5fed9 (patch) | |
tree | 9c1078ff117de751b74cf774ebee6f7b4167e06c /include/clang/Analysis/PathSensitive/ExplodedGraph.h | |
parent | 8527f82594d88002c036cd8833379670a0bce067 (diff) |
Fix copy-paste error.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49076 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Analysis/PathSensitive/ExplodedGraph.h')
-rw-r--r-- | include/clang/Analysis/PathSensitive/ExplodedGraph.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Analysis/PathSensitive/ExplodedGraph.h b/include/clang/Analysis/PathSensitive/ExplodedGraph.h index 656981f620..7b224454e5 100644 --- a/include/clang/Analysis/PathSensitive/ExplodedGraph.h +++ b/include/clang/Analysis/PathSensitive/ExplodedGraph.h @@ -123,7 +123,7 @@ public: unsigned succ_size() const { return Succs.size(); } unsigned pred_size() const { return Preds.size(); } bool succ_empty() const { return Succs.empty(); } - bool pred_empty() const { return Preds.size(); } + bool pred_empty() const { return Preds.empty(); } bool isSink() const { return Succs.getFlag(); } void markAsSink() { Succs.setFlag(); } |