From 6bb6d9f1979eb3620239939e8602635bb73f06c4 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Fri, 30 May 2008 16:42:02 +0000 Subject: [PATCH] Use llvm::cl::desc for description of the -Wimplicit-function-declaration option. Patch by Holger Schurig! llvm-svn: 51774 --- clang/Driver/clang.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/Driver/clang.cpp b/clang/Driver/clang.cpp index 714b03eca307..84df9de971ac 100644 --- a/clang/Driver/clang.cpp +++ b/clang/Driver/clang.cpp @@ -489,8 +489,8 @@ WarnUndefMacros("Wundef", llvm::cl::desc("Warn on use of undefined macros in #if's")); static llvm::cl::opt -WarnImplicitFunctionDeclaration("Wimplicit-function-declaration" - "Warn about use of implicitly defined functions"); +WarnImplicitFunctionDeclaration("Wimplicit-function-declaration", + llvm::cl::desc("Warn about uses of implicitly defined functions")); /// InitializeDiagnostics - Initialize the diagnostic object, based on the /// current command line option settings.