aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Analysis/ProgramPoint.h
diff options
context:
space:
mode:
authorSean Hunt <scshunt@csclub.uwaterloo.ca>2011-01-08 20:30:50 +0000
committerSean Hunt <scshunt@csclub.uwaterloo.ca>2011-01-08 20:30:50 +0000
commitcbb67480094b3bcb5b715acd827cbad55e2a204c (patch)
tree82bee7d3baf90ff2c1525d32919bd06a33d02cd2 /include/clang/Analysis/ProgramPoint.h
parent97fcc4977b21da43ab106607ad472149b7d4785a (diff)
Renamed CXXBaseOrMemberInitializer to CXXCtorInitializer. This is both shorter,
more accurate, and makes it make sense for it to hold a delegating constructor call. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@123084 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Analysis/ProgramPoint.h')
-rw-r--r--include/clang/Analysis/ProgramPoint.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Analysis/ProgramPoint.h b/include/clang/Analysis/ProgramPoint.h
index 12597e9106..36e40164c0 100644
--- a/include/clang/Analysis/ProgramPoint.h
+++ b/include/clang/Analysis/ProgramPoint.h
@@ -307,7 +307,7 @@ public:
class PostInitializer : public ProgramPoint {
public:
- PostInitializer(const CXXBaseOrMemberInitializer *I,
+ PostInitializer(const CXXCtorInitializer *I,
const LocationContext *L)
: ProgramPoint(I, PostInitializerKind, L) {}