commit | 3352fbab86aa669453c9d39cb1581dd229d20af3 | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Wed Apr 02 20:44:27 2008 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Wed Apr 02 20:44:27 2008 +0000 |
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
diff --git a/include/clang/Analysis/PathDiagnostic.h b/include/clang/Analysis/PathDiagnostic.h index 2d66ba3..cfca94b 100644 --- a/include/clang/Analysis/PathDiagnostic.h +++ b/include/clang/Analysis/PathDiagnostic.h
@@ -68,8 +68,8 @@ 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();