diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-28 23:43:28 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-28 23:43:28 +0000 |
commit | caa776be917a5af54e4851ec578d9d7b7a6f7c69 (patch) | |
tree | 018a113963cef5e2aa7add95c1b63caf5cf4961b /llvm/include | |
parent | 6b55dbea8661dd825a4993c7d7a84f1a92c095b9 (diff) | |
download | bcm5719-llvm-caa776be917a5af54e4851ec578d9d7b7a6f7c69.tar.gz bcm5719-llvm-caa776be917a5af54e4851ec578d9d7b7a6f7c69.zip |
Fix -Wdocumentation warnings.
llvm-svn: 187336
Diffstat (limited to 'llvm/include')
-rw-r--r-- | llvm/include/llvm/ADT/IntervalMap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/ADT/IntervalMap.h b/llvm/include/llvm/ADT/IntervalMap.h index 44a61fff851..1ca3288a350 100644 --- a/llvm/include/llvm/ADT/IntervalMap.h +++ b/llvm/include/llvm/ADT/IntervalMap.h @@ -612,7 +612,7 @@ public: /// insertFrom - Add mapping of [a;b] to y if possible, coalescing as much as /// possible. This may cause the node to grow by 1, or it may cause the node /// to shrink because of coalescing. -/// @param i Starting index = insertFrom(0, size, a) +/// @param Pos Starting index = insertFrom(0, size, a) /// @param Size Number of elements in node. /// @param a Interval start. /// @param b Interval stop. @@ -1956,7 +1956,7 @@ iterator::eraseNode(unsigned Level) { /// overflow - Distribute entries of the current node evenly among /// its siblings and ensure that the current node is not full. /// This may require allocating a new node. -/// @param NodeT The type of node at Level (Leaf or Branch). +/// @tparam NodeT The type of node at Level (Leaf or Branch). /// @param Level path index of the overflowing node. /// @return True when the tree height was changed. template <typename KeyT, typename ValT, unsigned N, typename Traits> |