From 36c37a60b004c571bc4458dcefba2c6afcbd1c33 Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 20 Mar 2008 10:11:52 -0400 Subject: [PATCH] ENH: Clarify end of (dev) warnings to explicitly state they are meant for project developers. --- Source/cmake.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/cmake.cxx b/Source/cmake.cxx index f3c2faf2c..b045f1c4a 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -4185,7 +4185,8 @@ void cmake::IssueMessage(cmake::MessageType t, std::string const& text, // Add a note about warning suppression. if(t == cmake::AUTHOR_WARNING) { - msg << "This warning may be suppressed using the -Wno-dev option."; + msg << + "This warning is for project developers. Use -Wno-dev to suppress it."; } // Add a terminating blank line.