Skip to content

Commit 8331fad

Browse files
Address a comment.
1 parent a5f1e9d commit 8331fad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/include/llvm/Support/Registry.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ namespace llvm {
5858
// declaration causing error C2487 "member of dll interface class may not
5959
// be declared with dll interface".
6060
// https://developercommunity.visualstudio.com/t/c2487-in-dllexport-class-with-static-members/69878
61-
inline static node *Head = nullptr;
62-
inline static node *Tail = nullptr;
61+
static inline node *Head = nullptr;
62+
static inline node *Tail = nullptr;
6363

6464
public:
6565
/// Node in linked list of entries.

0 commit comments

Comments
 (0)