Skip to content

Commit 42ba847

Browse files
committed
DLLExport public methods from SmallVector
1 parent 8337d01 commit 42ba847

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/include/llvm/ADT/SmallVector.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

7777
public:
7878
size_t size() const { return Size; }

0 commit comments

Comments
 (0)