GlobalLayoutBuilder::addFragment(): Prune incorrect usage of \param(s). [-Wdocumentation]

llvm-svn: 230480
This commit is contained in:
NAKAMURA Takumi 2015-02-25 11:04:36 +00:00
parent b01d86b315
commit 31574990a1
1 changed files with 3 additions and 3 deletions

View File

@ -131,9 +131,9 @@ struct GlobalLayoutBuilder {
GlobalLayoutBuilder(uint64_t NumObjects)
: Fragments(1), FragmentMap(NumObjects) {}
/// Add \param F to the layout while trying to keep its indices contiguous.
/// If a previously seen fragment uses any of \param F's indices, that
/// fragment will be laid out inside \param F.
/// Add F to the layout while trying to keep its indices contiguous.
/// If a previously seen fragment uses any of F's indices, that
/// fragment will be laid out inside F.
void addFragment(const std::set<uint64_t> &F);
};