From 034a18c3d20b93451e46f4fe274c56517c6271df Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 6 Nov 2006 06:33:29 +0000 Subject: [PATCH] use default ctor llvm-svn: 39140 --- clang/include/clang/Basic/Diagnostic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/include/clang/Basic/Diagnostic.h b/clang/include/clang/Basic/Diagnostic.h index 201313cbb6b6..85680792afcf 100644 --- a/clang/include/clang/Basic/Diagnostic.h +++ b/clang/include/clang/Basic/Diagnostic.h @@ -119,7 +119,7 @@ public: /// Report - Issue the message to the client. DiagID is a member of the /// diag::kind enum. void Report(SourceLocation Pos, unsigned DiagID, - const std::string &Extra = ""); + const std::string &Extra = std::string()); }; /// DiagnosticClient - This is an abstract interface implemented by clients of -- GitLab