diff options
-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(); |