diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-06-17 22:06:03 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-06-17 22:06:03 +0000 |
commit | fdf6a56339b3df94d46a49c4977e0a21e8922cf3 (patch) | |
tree | a743a686f768a03b3373c1cb3f1d3fd708d70c36 | |
parent | 67f28534c090650ffa123afa84ff4a96f56de14e (diff) |
Class 'Environment' no longer should subclass llvm::FoldingSetNode.
Environment hasn't been uniqued in a FoldingSet for some time, so this
was just wasting a pointer in GRState.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@73645 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Analysis/PathSensitive/Environment.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/clang/Analysis/PathSensitive/Environment.h b/include/clang/Analysis/PathSensitive/Environment.h index fde8b167f3..f94792a0cb 100644 --- a/include/clang/Analysis/PathSensitive/Environment.h +++ b/include/clang/Analysis/PathSensitive/Environment.h @@ -30,9 +30,8 @@ class EnvironmentManager; class BasicValueFactory; class LiveVariables; -class Environment : public llvm::FoldingSetNode { +class Environment { private: - friend class EnvironmentManager; // Type definitions. |