diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-04-02 20:44:27 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-04-02 20:44:27 +0000 |
commit | 3352fbab86aa669453c9d39cb1581dd229d20af3 (patch) | |
tree | 920451514438dbb5c868992e91ddff29c0acf933 | |
parent | b94763963d2c889a59a55498f48d758c92d59ca0 (diff) |
Fix initialization bug.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49115 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Analysis/PathDiagnostic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Analysis/PathDiagnostic.h b/include/clang/Analysis/PathDiagnostic.h index 2d66ba3df5..cfca94b4ca 100644 --- a/include/clang/Analysis/PathDiagnostic.h +++ b/include/clang/Analysis/PathDiagnostic.h @@ -68,8 +68,8 @@ class PathDiagnostic { public: PathDiagnostic() : Size(0) {} - PathDiagnostic(const char* desc) : Desc(desc) {} - PathDiagnostic(const std::string& desc) : Desc(desc) {} + PathDiagnostic(const char* desc) : Size(0), Desc(desc) {} + PathDiagnostic(const std::string& desc) : Size(0), Desc(desc) {} ~PathDiagnostic(); |