aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAnna Zaks <ganna@apple.com>2013-04-20 01:15:36 +0000
committerAnna Zaks <ganna@apple.com>2013-04-20 01:15:36 +0000
commit716859df842e5a56e816d820d8326ead152dd9e4 (patch)
tree38f029f98f88619bf5253d7879f6a20bddf201d8 /include
parent10391c2890be5309d8b166507a0ed967eb9e5586 (diff)
[analyzer] Flip printPretty and printPrettyAsExpr as per suggestion from Jordan (r179572)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@179915 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h b/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
index f8f9e6db4d..e4d67cab0d 100644
--- a/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
+++ b/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
@@ -884,7 +884,7 @@ public:
return R->getKind() == VarRegionKind;
}
- bool canPrintPretty() const;
+ bool canPrintPrettyAsExpr() const;
void printPrettyAsExpr(raw_ostream &os) const;
};
@@ -965,7 +965,7 @@ public:
const ObjCIvarDecl *getDecl() const;
QualType getValueType() const;
- bool canPrintPretty() const;
+ bool canPrintPrettyAsExpr() const;
void printPrettyAsExpr(raw_ostream &os) const;
void dumpToStream(raw_ostream &os) const;