aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Analysis/PathSensitive/BugReporter.h
diff options
context:
space:
mode:
authorZhongxing Xu <xuzhongxing@gmail.com>2009-08-06 06:28:40 +0000
committerZhongxing Xu <xuzhongxing@gmail.com>2009-08-06 06:28:40 +0000
commit38b02b912e1a55c912f603c4369431264d36a381 (patch)
treeb25aa0b52a792659c061e5d5d74533cf1a4c5f48 /include/clang/Analysis/PathSensitive/BugReporter.h
parentaddc931273b4b534648ef9fbc6d54065c745ce9d (diff)
Core analysis engine template cleanup step 2:
merge ExplodedGraphImpl and ExplodedGraph. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@78291 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Analysis/PathSensitive/BugReporter.h')
-rw-r--r--include/clang/Analysis/PathSensitive/BugReporter.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/clang/Analysis/PathSensitive/BugReporter.h b/include/clang/Analysis/PathSensitive/BugReporter.h
index a414208269..70eb1da8f2 100644
--- a/include/clang/Analysis/PathSensitive/BugReporter.h
+++ b/include/clang/Analysis/PathSensitive/BugReporter.h
@@ -358,15 +358,15 @@ public:
/// getEngine - Return the analysis engine used to analyze a given
/// function or method.
- GRExprEngine& getEngine() { return Eng; }
+ GRExprEngine &getEngine() { return Eng; }
/// getGraph - Get the exploded graph created by the analysis engine
/// for the analyzed method or function.
- ExplodedGraph<GRState>& getGraph();
+ ExplodedGraph &getGraph();
/// getStateManager - Return the state manager used by the analysis
/// engine.
- GRStateManager& getStateManager();
+ GRStateManager &getStateManager();
virtual void GeneratePathDiagnostic(PathDiagnostic& PD,
BugReportEquivClass& R);
@@ -402,7 +402,7 @@ public:
GRBugReporter& getBugReporter() { return BR; }
- ExplodedGraph<GRState>& getGraph() { return BR.getGraph(); }
+ ExplodedGraph &getGraph() { return BR.getGraph(); }
void addNotableSymbol(SymbolRef Sym) {
// FIXME: For now forward to GRBugReporter.