File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ class COFFImportFileScanner {
32
32
public:
33
33
COFFImportFileScanner (std::set<std::string> &ImportedDynamicLibraries)
34
34
: ImportedDynamicLibraries(ImportedDynamicLibraries) {}
35
- LLVM_ABI Expected<bool > operator ()(object::Archive &A, MemoryBufferRef MemberBuf,
36
- size_t Index) const ;
35
+ LLVM_ABI Expected<bool >
36
+ operator ()(object::Archive &A, MemoryBufferRef MemberBuf, size_t Index) const ;
37
37
38
38
private:
39
39
std::set<std::string> &ImportedDynamicLibraries;
Original file line number Diff line number Diff line change 8
8
#ifndef LLVM_FRONTEND_DIRECTIVE_SPELLING_H
9
9
#define LLVM_FRONTEND_DIRECTIVE_SPELLING_H
10
10
11
- #include " llvm/Support/Compiler.h"
12
11
#include " llvm/ADT/StringRef.h"
13
12
#include " llvm/ADT/iterator_range.h"
13
+ #include " llvm/Support/Compiler.h"
14
14
15
15
#include < limits>
16
16
#include < tuple>
@@ -34,7 +34,8 @@ struct Spelling {
34
34
VersionRange Versions;
35
35
};
36
36
37
- LLVM_ABI StringRef FindName (llvm::iterator_range<const Spelling *>, unsigned Version);
37
+ LLVM_ABI StringRef FindName (llvm::iterator_range<const Spelling *>,
38
+ unsigned Version);
38
39
39
40
} // namespace llvm::directive
40
41
Original file line number Diff line number Diff line change @@ -97,7 +97,8 @@ class ResourceRange {
97
97
98
98
// Returns a reference to the first RangeInfo that overlaps with
99
99
// [Info.LowerBound;Info.UpperBound], or, std::nullopt if there is no overlap
100
- LLVM_ABI std::optional<const RangeInfo *> getOverlapping (const RangeInfo &Info) const ;
100
+ LLVM_ABI std::optional<const RangeInfo *>
101
+ getOverlapping (const RangeInfo &Info) const ;
101
102
102
103
// Return the mapped RangeInfo at X or nullptr if no mapping exists
103
104
LLVM_ABI const RangeInfo *lookup (uint32_t X) const ;
You can’t perform that action at this time.
0 commit comments