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 | 15658b290817d6f198ab08910a2d754ba11164d1 (patch) | |
tree | 50de21c467694b5c989a1e3bec02577fab0cf006 /include/llvm/ADT | |
parent | 064a68682d7fff603dfb53e21cad951943e62905 (diff) | |
download | external_llvm-15658b290817d6f198ab08910a2d754ba11164d1.zip external_llvm-15658b290817d6f198ab08910a2d754ba11164d1.tar.gz external_llvm-15658b290817d6f198ab08910a2d754ba11164d1.tar.bz2 |
Fix -Wdocumentation warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187336 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT')
-rw-r--r-- | include/llvm/ADT/IntervalMap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/ADT/IntervalMap.h b/include/llvm/ADT/IntervalMap.h index 44a61ff..1ca3288 100644 --- a/include/llvm/ADT/IntervalMap.h +++ b/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> |