Skip to content

Commit 22f8e13

Browse files
committed
[Demangling] Include the necessary header for SWIFT_NODISCARD.
This became an issue because git clang-format reorganised the includes in one of the other files. rdar://79725187
1 parent 9013083 commit 22f8e13

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

include/swift/Demangling/Demangle.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,13 @@
1919
#ifndef SWIFT_DEMANGLING_DEMANGLE_H
2020
#define SWIFT_DEMANGLING_DEMANGLE_H
2121

22-
#include <memory>
23-
#include <string>
22+
#include "swift/Demangling/NamespaceMacros.h"
23+
#include "swift/Runtime/Config.h"
24+
#include "llvm/ADT/StringRef.h"
2425
#include <cassert>
2526
#include <cstdint>
26-
#include "llvm/ADT/StringRef.h"
27-
#include "swift/Demangling/NamespaceMacros.h"
27+
#include <memory>
28+
#include <string>
2829

2930
namespace llvm {
3031
class raw_ostream;

0 commit comments

Comments
 (0)