We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8337d01 commit 1d33916Copy full SHA for 1d33916
llvm/include/llvm/ADT/StringMap.h
@@ -17,6 +17,7 @@
17
#include "llvm/ADT/StringMapEntry.h"
18
#include "llvm/ADT/iterator.h"
19
#include "llvm/Support/AllocatorBase.h"
20
+#include "llvm/Support/Compiler.h"
21
#include "llvm/Support/PointerLikeTypeTraits.h"
22
#include <initializer_list>
23
#include <iterator>
@@ -29,7 +30,7 @@ template <typename ValueTy> class StringMapKeyIterator;
29
30
31
/// StringMapImpl - This is the base class of StringMap that is shared among
32
/// all of its instantiations.
-class StringMapImpl {
33
+class LLVM_ABI StringMapImpl {
34
protected:
35
// Array of NumBuckets pointers to entries, null pointers are holes.
36
// TheTable[NumBuckets] contains a sentinel value for easy iteration. Followed
0 commit comments