[SmallVector][NFC] Link to ProgrammersManual from SmallVector docs
authorScott Linder <Scott.Linder@amd.com>
Fri, 11 Dec 2020 19:34:10 +0000 (19:34 +0000)
committerScott Linder <Scott.Linder@amd.com>
Fri, 11 Dec 2020 19:34:10 +0000 (19:34 +0000)
Add a "see also" link from the condensed doxygen description of
`SmallVector` to the more complete description in the ProgrammersManual.

llvm/include/llvm/ADT/SmallVector.h

index 10b9d4e..0a0f09c 100644 (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>,