diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-03-27 17:16:06 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-03-27 17:16:06 +0000 |
commit | 5c6422f36c5280046bbbcb54ff797639458a64ff (patch) | |
tree | d502cbdf06fb0c7a02f6a477a8fdd771b828bf47 | |
parent | 053ef593fa9d2b890645a914eee203231fb34458 (diff) |
Add default ctor implementation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48885 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Analysis/PathSensitive/AnnotatedPath.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Analysis/PathSensitive/AnnotatedPath.h b/include/clang/Analysis/PathSensitive/AnnotatedPath.h index 299634b7f9..5056b77aab 100644 --- a/include/clang/Analysis/PathSensitive/AnnotatedPath.h +++ b/include/clang/Analysis/PathSensitive/AnnotatedPath.h @@ -47,7 +47,7 @@ class AnnotatedPath { typedef std::list<AnnotatedNode<STATE> > impl; impl path; public: - AnnotatedPath(); + AnnotatedPath() {} void push_back(ExplodedNode<STATE>* N, const std::string& s, Expr* E = NULL) { path.push_back(AnnotatedNode<STATE>(N, s, E)); |