diff options
author | Sean McBride <sean@rogue-research.com> | 2013-09-19 17:02:31 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-10-08 13:16:32 (GMT) |
commit | 8e96353fd85cff5f06bda071f3a11397e3faa757 (patch) | |
tree | aa01f914e04cee6fb674713098f66092f3a1a504 /Source | |
parent | d99303220922142c2d3fdce5346d0997e4f3b457 (diff) | |
download | CMake-8e96353fd85cff5f06bda071f3a11397e3faa757.zip CMake-8e96353fd85cff5f06bda071f3a11397e3faa757.tar.gz CMake-8e96353fd85cff5f06bda071f3a11397e3faa757.tar.bz2 |
Fix warnings about \brief usage
A doxygen \brief is ended with a newline, so remove a newline right
after \brief to fix clang -Wdocumentation warning.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmAddCustomCommandCommand.h | 4 | ||||
-rw-r--r-- | Source/cmCreateTestSourceList.h | 2 | ||||
-rw-r--r-- | Source/cmIncludeCommand.h | 4 |
3 files changed, 3 insertions, 7 deletions
diff --git a/Source/cmAddCustomCommandCommand.h b/Source/cmAddCustomCommandCommand.h index 1cc1e3a..2504185 100644 --- a/Source/cmAddCustomCommandCommand.h +++ b/Source/cmAddCustomCommandCommand.h @@ -16,9 +16,7 @@ #include "cmDocumentGeneratorExpressions.h" /** \class cmAddCustomCommandCommand - * \brief - * - * cmAddCustomCommandCommand defines a new command (rule) that can + * \brief cmAddCustomCommandCommand defines a new command (rule) that can * be executed within the build process * */ diff --git a/Source/cmCreateTestSourceList.h b/Source/cmCreateTestSourceList.h index 3aa0a79..b9c6341 100644 --- a/Source/cmCreateTestSourceList.h +++ b/Source/cmCreateTestSourceList.h @@ -15,7 +15,7 @@ #include "cmCommand.h" /** \class cmCreateTestSourceList - * \brief + * \brief Test driver generation command * */ diff --git a/Source/cmIncludeCommand.h b/Source/cmIncludeCommand.h index d97b7c3..8ff8b20 100644 --- a/Source/cmIncludeCommand.h +++ b/Source/cmIncludeCommand.h @@ -15,9 +15,7 @@ #include "cmCommand.h" /** \class cmIncludeCommand - * \brief - * - * cmIncludeCommand defines a list of distant + * \brief cmIncludeCommand defines a list of distant * files that can be "included" in the current list file. * In almost every sense, this is identical to a C/C++ * #include command. Arguments are first expended as usual. |