Skip to content

Commit 1d33916

Browse files
committed
DLLExport StringMapImpl
1 parent 8337d01 commit 1d33916

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/include/llvm/ADT/StringMap.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#include "llvm/ADT/StringMapEntry.h"
1818
#include "llvm/ADT/iterator.h"
1919
#include "llvm/Support/AllocatorBase.h"
20+
#include "llvm/Support/Compiler.h"
2021
#include "llvm/Support/PointerLikeTypeTraits.h"
2122
#include <initializer_list>
2223
#include <iterator>
@@ -29,7 +30,7 @@ template <typename ValueTy> class StringMapKeyIterator;
2930

3031
/// StringMapImpl - This is the base class of StringMap that is shared among
3132
/// all of its instantiations.
32-
class StringMapImpl {
33+
class LLVM_ABI StringMapImpl {
3334
protected:
3435
// Array of NumBuckets pointers to entries, null pointers are holes.
3536
// TheTable[NumBuckets] contains a sentinel value for easy iteration. Followed

0 commit comments

Comments
 (0)