[SmallVector][NFC] Link to ProgrammersManual from SmallVector docs

Add a "see also" link from the condensed doxygen description of
`SmallVector` to the more complete description in the ProgrammersManual.
This commit is contained in:
Scott Linder 2020-12-11 19:34:10 +00:00
parent d02eac0c00
commit 32910f780d
1 changed files with 1 additions and 0 deletions

View File

@ -1021,6 +1021,7 @@ template <typename T> struct CalculateSmallVectorDefaultInlinedElements {
///
/// \warning This does not attempt to be exception safe.
///
/// \see https://llvm.org/docs/ProgrammersManual.html#llvm-adt-smallvector-h
template <typename T,
unsigned N = CalculateSmallVectorDefaultInlinedElements<T>::value>
class LLVM_GSL_OWNER SmallVector : public SmallVectorImpl<T>,