File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -66,13 +66,13 @@ template <class Size_T> class SmallVectorBase {
6666 // / This is a helper for \a grow() that's out of line to reduce code
6767 // / duplication. This function will report a fatal error if it can't grow at
6868 // / least to \p MinSize.
69- void *mallocForGrow (void *FirstEl, size_t MinSize, size_t TSize,
70- size_t &NewCapacity);
69+ LLVM_ABI void *mallocForGrow (void *FirstEl, size_t MinSize, size_t TSize,
70+ size_t &NewCapacity);
7171
7272 // / This is an implementation of the grow() method which only works
7373 // / on POD-like data types and is out of line to reduce code duplication.
7474 // / This function will report a fatal error if it cannot increase capacity.
75- void grow_pod (void *FirstEl, size_t MinSize, size_t TSize);
75+ LLVM_ABI void grow_pod (void *FirstEl, size_t MinSize, size_t TSize);
7676
7777public:
7878 size_t size () const { return Size; }
You can’t perform that action at this time.
0 commit comments