Skip to content

Commit 5f8f34e

Browse files
committed
Remove \brief commands from doxygen comments.
We've been running doxygen with the autobrief option for a couple of years now. This makes the \brief markers into our comments redundant. Since they are a visual distraction and we don't want to encourage more \brief markers in new code either, this patch removes them all. Patch produced by for i in $(git grep -l '\\brief'); do perl -pi -e 's/\\brief //g' $i & done Differential Revision: https://reviews.llvm.org/D46290 llvm-svn: 331272
1 parent 5727011 commit 5f8f34e

File tree

781 files changed

+5005
-5005
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

781 files changed

+5005
-5005
lines changed

llvm/include/llvm-c/lto.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ lto_module_create_from_memory_with_path(const void* mem, size_t length,
190190
const char *path);
191191

192192
/**
193-
* \brief Loads an object file in its own context.
193+
* Loads an object file in its own context.
194194
*
195195
* Loads an object file in its own LLVMContext. This function call is
196196
* thread-safe. However, modules created this way should not be merged into an
@@ -205,7 +205,7 @@ lto_module_create_in_local_context(const void *mem, size_t length,
205205
const char *path);
206206

207207
/**
208-
* \brief Loads an object file in the codegen context.
208+
* Loads an object file in the codegen context.
209209
*
210210
* Loads an object file into the same context as \c cg. The module is safe to
211211
* add using \a lto_codegen_add_module().
@@ -345,7 +345,7 @@ extern lto_code_gen_t
345345
lto_codegen_create(void);
346346

347347
/**
348-
* \brief Instantiate a code generator in its own context.
348+
* Instantiate a code generator in its own context.
349349
*
350350
* Instantiates a code generator in its own context. Modules added via \a
351351
* lto_codegen_add_module() must have all been created in the same context,
@@ -539,7 +539,7 @@ lto_codegen_set_should_internalize(lto_code_gen_t cg,
539539
lto_bool_t ShouldInternalize);
540540

541541
/**
542-
* \brief Set whether to embed uselists in bitcode.
542+
* Set whether to embed uselists in bitcode.
543543
*
544544
* Sets whether \a lto_codegen_write_merged_modules() should embed uselists in
545545
* output bitcode. This should be turned on for all -save-temps output.

llvm/include/llvm/ADT/APFloat.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1215,7 +1215,7 @@ inline APFloat abs(APFloat X) {
12151215
return X;
12161216
}
12171217

1218-
/// \brief Returns the negated value of the argument.
1218+
/// Returns the negated value of the argument.
12191219
inline APFloat neg(APFloat X) {
12201220
X.changeSign();
12211221
return X;

0 commit comments

Comments
 (0)